Refine

R

Refine

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

Join

ask-any-question

general

custom login page

I need to create a custom login page with ant design. Only login no link to sign in

sider width

can I change the width of the sizer? i need to make it larger

I'm making a get api call every time a key is entered. How do I make it send only when onSubmit occu

``` const [searchField, setSearchField] = useState('') const { data: members } = useList<IMember>({ resource: 'membership/subscribers',...

ant design theme

I am trying to create a custom theme on ant design, changing all the colors. can you help me?

How to get other resource?

``` export default function MembershipList() { const [open, setOpen] = useState(false) const [selectedMember, setSelectedMember] = useState<IMember | null>(null)...

useget

@kapa.ai to get which mode is used currently dark mode or light how to get that, iam using themedLayoutV2

delete confirm modification

I want to modify the content modal that appears when you try to erase a entry using the deleteButton, being more specific i want to add a disable for 3 seconds to the buttons of the modal

Set a context upon user Login

How to fix a context value upon user Login in a refine app ?

How to style ant-layout-sider-trigger of sider ?

How to style ant-layout-sider-trigger of sider ?

Arm64 Support

Hello! I am trying to deploy a refine web app using vite on an arm64 node and i cant make it work! Can someone provide any information regarding refine and arm64 support? Thanks in advance

resource

I am trying to understand why resource are not avilable from one of my new pages ``` <Route path="/post"> <Route index element={<ListPost />} /> <Route path="/post/create" element={<CreatePost />} />...

Partial route from Select

How to have a header containing a <Select> component reflecting entities user has access to, when user change the selected value in this <Select>, it changes route "/entities/:selectedEntity/test" to new value like /entities/1/test if selected value is 1. This route is initialized to first value of select by default.

nestjsx-crud

my request like this ```const { tableProps, searchFormProps } = useTable({ syncWithLocation: true, onSearch: (values) => { setSearchFormValues(values as Record<string, any>);...

How to automatically pass parameter to CanParams in Access control

I have an application with routing enabled and customerId a parameter of the routes : ex : /customer/:customerId/users or /customer/:customerId/locations/:locationId And I want the :customerId parameter of route to be used automatically in CanParams.params of my accessControlProvider to apply customer permissions....

Error returns the message as an array instead of a string

this is my api response
{"statusCode":400,"message":"This name is already taken","error":"Bad Request","errors":{"name":["This name is already taken"]}}
{"statusCode":400,"message":"This name is already taken","error":"Bad Request","errors":{"name":["This name is already taken"]}}
but when i call the following function ...

Next.js, Material UI of refine.dev error

Hello support team, I used refine.dev with material UI and Next.js but I am getting `` Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. Check the render method of RootLayout`....

react-query version compatibility issue

I am using @ferdiunal/refine-shadcn library and refine dev libraries for my Next.js. I am using pnpm and it's getting error while install the packages because of react-query version issue. @ferdiunal/refine-shadcn requires ^5.5 but @refinedev/core requires ^4.10.1. So it leads me into several issues and I can't run the project. How to fix this issue?...

useList pageInfo

I amtrying to access pageInfo in my react js code for following query ``` query Customers( $paging: OffsetPaging! $filter: CustomerFilter!...

<DocumentTitleHandler />

How to adjust the title of document ? Now it displays "{source} | Refine" - I want to replace Refine to my name
Next