Refine

R

Refine

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

Join

ask-any-question

discussions

funny-blue
funny-blue3/18/2025

uselist or useSelect

i am calling a table on strapi and trying to use useSelect but I need to filter for multiple <Select />. I can do it by using multiple useSelect with filters but I wanted to do only one call. is there a solution?
optimistic-gold
optimistic-gold3/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,...
vicious-gold
vicious-gold3/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
sensitive-blue
sensitive-blue3/16/2025

notification

Iam using refine MUI, how can I add notification gui elemnts and logic I have a custom notification backend using websocket...
foreign-sapphire
foreign-sapphire3/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 !...
optimistic-gold
optimistic-gold3/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 ?
ratty-blush
ratty-blush3/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...
optimistic-gold
optimistic-gold3/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 ?
passive-yellow
passive-yellow3/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?
optimistic-gold
optimistic-gold3/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
exotic-emerald
exotic-emerald3/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...
sensitive-blue
sensitive-blue3/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 ?
sensitive-blue
sensitive-blue3/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...
sensitive-blue
sensitive-blue3/7/2025

resource lookup

can I get a resource and its values from resources list ?
sensitive-blue
sensitive-blue3/7/2025

use dataProvider

can I use dataProvider method directly from pages ?
funny-blue
funny-blue3/7/2025

rich text in form

I am working on slatejs rich text with ant design form. can you help me get the value
fair-rose
fair-rose3/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...
afraid-scarlet
afraid-scarlet3/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
other-emerald
other-emerald3/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
dependent-tan
dependent-tan3/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,...