Toster translations
hi i'd love to create translations for notifications and all other default refine text
but i cant find keys that i need to set in my i18n resources...
antd
I'm using the latest version of refine with antd and nextjs config. Instead of the Sider collapsible button, I'd like to add a custom Hamburger menu positioned at the top-left corner of the Header. The problem I have is there's no props called
trigger
to hide the default collapsible button.
As you can see there're only 3 props Title
, render
, meta
are exposed in LayoutProps.Sider
. is there any way to get around this?...Getting Data from a key in a REST response
I'm trying to populate a Refine MUI table with data from the Django Rest Framework API. The response from the API is in the following format:
{
"count": 41,
"next": "http://localhost:8000/api/captures?_end=25&_start=25",
"previous": null,...
translate antd toast messages with i18n
@kapa.ai how can i translate antd toast messages (for example, useDrawerForm, useModalForm) with i18n?
How to implement authentication and allow user to display leads
How can I authenticate a user by calling an endpoint with the user email and password as the payload. Then saving the token and using the same token to fetch leads from another endpoint which requires the user to be authenticated
useList pageSize defaults to 10
useList pageSize defaults to 10 how can the default pagigation value be changed across the hooks can it be set in the config
change filter operators in useTable
can i get an example to change default operator in useTable for specific field. e.g: firstName to "contains"
How to increase expire time of access token Google Auth?
How to increase expire time of access token Google Auth?
customize warn on unsaved changes message
@kapa.ai How can I customize the warn on unsaved changes message text that appears when using useDrawerForm?
Add refresh button to a list using mantine
I've added RefreshButton using headerButtons property of List component. It renders fine, but tapping on it does nothing. How can I make RefreshButton invalidate the list part of current resource?
nextjs
Hello
When working with nextjs which is the best option to use for redirecting : refine's useGo() or nextjs's useRouter?...
disable invalidation and mutate
const { mutate } = useUpdate();
mutate({
invalidates: ["list", "many", "detail"],
});...