All Questions
Tagged with react-refine or refine.js
25 questions
1
vote
1
answer
92
views
useSelect data hook isLoading always returns false
I have the following code in a next-js page to create an address search autocomplete. I want to show a spinning circle to the user when the query is running, which can be quite slow.
import {useSelect}...
0
votes
1
answer
178
views
Spring Boot & Next.js: 'Full Authentication is Required' Error Despite Adding Bearer Token
I have a Spring Boot backend and a Next.js frontend using the Refine framework. While my API works perfectly in Postman and Swagger (including authentication-protected endpoints), I'm encountering an ...
1
vote
0
answers
103
views
Refine Dev, how can i implement RTL in version 4?
So, I'm currently working on a project that is Arabic only, and it is my first time using Refine DEV.
On the websites documentation, I didn't find anything related to RTL in version 4.
So I wanted to ...
1
vote
1
answer
60
views
Getting double slash and getting 301 moved permanently when manually changing url
So basicallly i am getting double slash when i try to use getOne like this
https://api.cibuilders.co.in/admin-pannel/project//2229
and the url of the page is
http://localhost:5173/admin-pannel/project/...
2
votes
1
answer
459
views
React component not rendering data correctly after updating component state in a Refine project
I've been using Refine to build a dashboard application.
The majority of the pages work well with the data fetching capabilities provided by the Refine framework. However, I encountered an issue when ...
1
vote
2
answers
1k
views
Refine, Customize login page, use user-id instead of email
we've created a refine project and we want to connect it with our oauth2 service, our auth provider has userId:password logic instead of email:password combo, we tried customizing AuthPage but it does'...
3
votes
1
answer
4k
views
Why does rendering my antd form fail when including a DatePicker?
I have a component that renders a simple form looking like this:
const { saveButtonProps, formProps, formLoading, queryResult } = useForm();
return (
<Form {...formProps} layout='vertical'>
...
1
vote
2
answers
200
views
I tried to install strapi to refine dev: Cannot read properties of undefined (reading 'addBreadcrumb')
Node.js v20.12.2
[email protected]
Describe the bug:
After to run this command:
npx create-strapi-app@latest pdf-invoice-generator --quickstart
npm ERR! Node.js v20.12.2
npm ERR! A complete log of this run ...
1
vote
0
answers
100
views
Type 'X' is not assignable to type 'X'
I have an app with refine.dev and craft.js, I'm converting files from jsx to tsx and I have this error that I don't understand.
Here is the component :
import { Button, Image, Text } from "@...
1
vote
0
answers
293
views
React Refine framework and mui autocomplete dropdown menus with prefilled values from fetched data
I am working on a project with the refine framework for user registry management. In this application, it is possible to create dedicated processes for each user, and for each process, I can associate ...
1
vote
1
answer
2k
views
Refine.dev Fetching multiple records from different tables
How do you deal with fetching multiple records from two or more tables from the API using the useTable hook instead of useMany? Under the hood, useTable uses useList. Let's say I have customers and ...
4
votes
3
answers
3k
views
Ant Design ColorPicker component, transform the value before sending it to the server?
I'm using Refine with Ant Design. I've a form for creating a new tag. The form has a property named background_color, which should be the color in HEX format (i.e. #ff6347).
The problem is that <...
1
vote
0
answers
437
views
setting google auth in refine framework
I have already imported the google auth functionality in refine itself but when I change the value of "GOOGLE_CLIENT_ID" to the one I created in google OAuth, the popup for google auth comes ...
0
votes
1
answer
372
views
Can we use refine UI without router
The refine UI library is simply awesome, but most examples I saw rely on having a router and defining what path will have access to some action on the data source. But if I want just to render the ...
2
votes
2
answers
2k
views
Customizing Sidebar Menu in Admin Panel Built with React and Refine.js
I'm currently working on an admin panel for a news website using React, Refine . I'm relatively new to backend development, so I opted for Refine library to simplify the project.
my question might be ...