Refine

R

Refine

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

Join

ask-any-question

discussions

robust-apricot
robust-apricot9/25/2025

how to use antd notification for custom apis in page

how to use antd notification for custom apis in page
magic-beige
magic-beige9/24/2025

make menu open new tab

how make menu open new tab for some menu item?
continuing-cyan
continuing-cyan9/23/2025

Snackbar's customization

Hello! I would like to completely change the UI for snackbars, but keep all their current logic. Do you have any example of how to do this? I use Refine + MUI...
foreign-sapphire
foreign-sapphire9/23/2025

useExport only items showing on the list.

Basically I want to export only the items the user can see on the list.
stormy-gold
stormy-gold9/22/2025

Migration guide from AntD to Shadcn?

Any guides available if we want to migrate to Shadcn?
rare-sapphire
rare-sapphire9/19/2025

useExport with select

I want to use export when I select the elements from the checkbox.
rare-sapphire
rare-sapphire9/18/2025

Make a list of cards instead of table

I want to know if it's possible to make a list page with a list of cards instead of a table with ant design
foreign-sapphire
foreign-sapphire9/18/2025

Mash multiple fields into one with Antd tables

I have a table with And and currently I fetch data like this:
const { tableProps } = useTable<UserListItem>() I want to join the cells for first and lastname into one, howdo I do that? ...
foreign-sapphire
foreign-sapphire9/16/2025

How do I deal with nested resources?

I have a resource for users, and I want to be able to add and remove tags from said users; how do I use the useCreate and useDelete hooks for those?...
foreign-sapphire
foreign-sapphire9/13/2025

useTable totals from backend

I return the totals from my backend, like for example: { data: [{...},{...},{...},{...},{...}] total: 5 } but I can't make it work with antd useTable, unless I parse const { result, tableProps } = useTable<MyType>({ with something like correctlyTypedResult = result as unknown as MyType...
foreign-sapphire
foreign-sapphire9/12/2025

How can I remap the default Pagination and Sorting query params?

Now, by default they come as _start _limit _sort _order...
rare-sapphire
rare-sapphire9/11/2025

Refine + Strapi relation

how to add direct ID relation
foreign-sapphire
foreign-sapphire9/10/2025

Global refetch

Hi! I’m using Refine with a dataProvider that can change dynamically. I want all my resource lists to automatically refetch whenever the dataProvider changes.
solid-orange
solid-orange9/9/2025

@mui/material/Grid2 error when upgrading to v5

I'm getting this error after updating everything: ``` ✘ [ERROR] Could not resolve "@mui/material/Grid2" ...
rival-black
rival-black9/9/2025

Cursor Pagination with useInfiniteList in Refine: Still Not Working - Need Help!

I've been stuck on this for days now, and I'm at my wit's end. I'm trying to implement infinite scrolling in a chat application using Refine's useInfiniteList, but the cursor pagination simply refuses to work properly. If anyone has successfully implemented this, please help! ...
labour-coral
labour-coral9/8/2025

Does v5 work with nextjs 15 and shadcn?

Does v5 work with nextjs 15 and shadcn?
eastern-cyan
eastern-cyan9/3/2025

Refine v5

What does refine v5 come with
rising-crimson
rising-crimson8/22/2025

What would be the optimal way to integrate stytch auth magic links?

What would be the optimal way to integrate stytch auth magic links? It first send an email with a link which can be used for organization discovery and only after selecting the organization we can get the organization level token and consider them logged in. I am thinking of not using the auth provider provided by refine and do it some other way, but I wanted to know if I take some other approaches....
like-gold
like-gold8/21/2025

upgrade from v4 to v5

do I need to upgrade from v4 to v5? Is v4 still supported by dev team?
eastern-cyan
eastern-cyan8/20/2025

rapid refetching

i am trying to do rapid refetching of useList hook, and seems like it has a delay of around 5 seconds. meaning that if i refetch once, then try to refetch again after 3 seconds, it doesn't actually perform a network request. how come?