Refine

R

Refine

Join the community to ask questions about Refine and get answers from other members.

Join

ask-any-question

discussions

harsh-harlequin
harsh-harlequin3/17/2025

Supabase column filter and !inner in query

I have some join tables in my supabase database let say "devices" and "locations" defined like this : ``` devices { id : bigint, name: text,...
deep-jade
deep-jade3/16/2025

GraphQL with useUpdate Variable "$id" is not defined

Hi, I have a problem with my useupdate hook where it doesn't read the ID I gave.
No description
stormy-gold
stormy-gold3/16/2025

notification

Iam using refine MUI, how can I add notification gui elemnts and logic I have a custom notification backend using websocket...
xenial-black
xenial-black3/14/2025

Does anyone have experience with using refine with Xano ? and if so how did it go ?

I need to build a admin interface paired with xano and I am considering using refine. Thank you !...
harsh-harlequin
harsh-harlequin3/13/2025

Restore filters on refresh

When I use useTable to display data and one of my column is filtered using filterDropdown and a Select component, I have filter parameters reflected in URL since using also syncWithLocation flag. When I refresh the page using F5, how my filters from url could be restored to the select used to filter my column ?
ambitious-aqua
ambitious-aqua3/12/2025

Antd <Table> not refreshing when record deleted with <DeleteButton> action.

I have an ant design <Table> component and one of the columns has a <DeleteButton> that deletes the associated row. The delete is functioning correctly, however, the table is not refreshing automatically on the interface. I have another interface elsewhere in the application where this same thing is being done and it refreshes the UI without issue. The only difference seems to be in the call to useTable. In the case that works, I'm not specifying the 'resources' property explicitly, letting...
harsh-harlequin
harsh-harlequin3/12/2025

Leverage Querystring parameters

In a page, I want to be able to set querystring parameters in order to restore the view when a user directly access the page containing these querystring parameters the way pageSize and current works for table views. How can I achieve that in refine ?
conscious-sapphire
conscious-sapphire3/11/2025

Customize save button

having in mind the templates that refine provides for views is there a way to modify the save button to always show on screen for the create pages?
sensitive-blue
sensitive-blue3/11/2025

Título

Hola comunidad, alguna idea de cómo poder cambiar este "Refine" y poner algo personalizado o nada? Gracias de antemano.
No description
harsh-harlequin
harsh-harlequin3/10/2025

add quickFilter toolbar to mui data grid

hi, I'm using useDataGrid in a list page and it's working fine, my question is how can i use the showQuickFilter option of MUI DataGrid, when I add it the toolbar is visible and working but it doesn't search at all, can you provide a sample or does refine handle it in another way? thanks...
stormy-gold
stormy-gold3/8/2025

login redirect

I am looking to replace to code behind the login redirection and navigation in general can you help me to get on the track with that ?
stormy-gold
stormy-gold3/8/2025

avoid the need for useGetIdentity

My identity is not changing from page to page, we have our usernmae and profile avatar on the top bar, is there anyway of getting this information without querying moving from page to page I am trying reduce the amount of queries is there a way of getting the logged in user data with out querying with useGetIdentity and without session storage...
stormy-gold
stormy-gold3/7/2025

resource lookup

can I get a resource and its values from resources list ?
stormy-gold
stormy-gold3/7/2025

use dataProvider

can I use dataProvider method directly from pages ?
other-emerald
other-emerald3/7/2025

rich text in form

I am working on slatejs rich text with ant design form. can you help me get the value
exotic-emerald
exotic-emerald3/6/2025

datatable types

hello, guys, i have an issue i am having for several days. I wanted to make a table component using useTable hook from "@refinedev/react-table" Basically, the columns field don't want to accept ColumnDef<TData>[] type value. It gives me: ColumnDef<TData, any>[]' is not assignable to type 'ColumnDef<BaseRecord, any>[] but if I try to hard code the columns to a type ColumnDef<BaseRecord, any>[] , it errors: Type 'BaseRecord' is not assignable to type 'TData'. Please help me...
wise-white
wise-white3/6/2025

how to show antd modal instead of window.confirm when user have unsaved changes?

the unsaved changes currently show the window.confirm but we would like to replace it with models from ant design
sunny-green
sunny-green3/5/2025

using go method how can I pass extra information to a page

using go method how can I pass extra information to a page
correct-apricot
correct-apricot3/4/2025

Best way to access custom methods on a dataProvider

We have a dataProvider that looks like- ``` const nestCrudProvider = dataProviderNestjsxCrud(API_URL); const dataProvider = { ...nestCrudProvider,...
flat-fuchsia
flat-fuchsia3/4/2025

In the edit page, how do you remove form values?

I have a resource with a key of "a". When editing, I need to dynamically remove this from submission. For example, if situation 1, the PATCH should be {val1: 5, a: 10}, for situation 2, the PATCH should be {val1: 5}...