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 !...
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 ?
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...
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 ?
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?
Título
Hola comunidad, alguna idea de cómo poder cambiar este "Refine" y poner algo personalizado o nada? Gracias de antemano.

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...
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 ?
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...
rich text in form
I am working on slatejs rich text with ant design form. can you help me get the value
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...
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
using go method how can I pass extra information to a page
using go method how can I pass extra information to a page
Best way to access custom methods on a dataProvider
We have a dataProvider that looks like-
```
const nestCrudProvider = dataProviderNestjsxCrud(API_URL);
const dataProvider = {
...nestCrudProvider,...
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}...
useForm getValues vs refineCore query
I have an Edit form that I set up like
```
export const PanelEdit = () => {
const methods = useForm({
mode: "onChange",...