form submission error intercept
how can I , in a function like this , invoked in a form submission, call set_isLoadingOpen( false ); during a server side error ?
//for data manipulation
const handleSubmitPostCreate = async (values: FormValues) => {...
Error while trying to run a new refine app
I created a new app with npm create refine-app@latest
using antd and rest api , But it is throwing me this error when I try to run npm run start
[Error: ENOENT: no such file or directory, open 'D:\Personal-Projects\Web Projects\16 Mega Projects\portfolio-v8.next\BUILD_ID'] {
errno: -4058,...
usegetidentity issue in App.tsx
when I am introducing :
type IUser = {
id: number;
name: string;
role: string;...
How to set reset useCustom isLoading?
When I run the
refetch function from useCustom, the isLoading doesn't go to true then false.
Why is that?...Need a developer for a simple CRM based of Refine (Paid)
Hello!
I am looking for a developer to create a CRM baser of Refine.
It’s an internal system for our business that offers hotel stays in the form of gift cards B2B....
Refine Tutorial
HI , I am new to refine can any one recommend a blog or YouTube that explain refine and how it work along with different framework
use api message for notification
How can i use the api response message for notifciaton of create and edit
Is there a way of transforming what is sent by useForm?
I want to use the useForm hook but I want to transform the values it sends to the backend, I can't seem to see anything in the documentation but just asking here to confirm if I've missed something obvious. To give an example, lets say I have a form which accepts a title and description. Before this gets sent to the backend I would like to do some pre-processing on the 'title' parameter without it reflecting in the form. Is there a way of achieving this?
How to use edit model form without id?
I have a requirement where I want to edit a data in a modal form but I don't want to call the api to fetch data. Because I already have the data from the list value. I want the value from the list to be default values in edit modal form.
how to remove ant-page-header-heading ?
how to remove ant-page-header-heading?
I want to remove ant-page-header-heading ?...
How to pass an argument to usePermissions
in authProvider, I am expecting an argument in getPermissions, how do I pass the argument in usePermissions?
can I extend my refine app to have home page of my blog and other front end pages ?
can I extend my refine app to have home page of my blog and other front end pages ?
Documentation related question
In this page https://refine.dev/docs/routing/integrations/remix/#usage,
app/routes/posts._index.tsx here in the code ,
```
import { useTable } from "@refinedev/core";
// see no imports mentioned...Hide breadcrum and title
Hi, I'm using refine and antd for create my page
I can see the breadcrum, back icon and title on header of each page (list, create, edit, show)
Can I remove those Items?...
Custom create function for a resource
I have a resource who's data provider is supabase. That's fine for read and edit. But the create logic is entirely custom. I want to press a button, hit an api endpoint that will generate the new record(s), but stay on the page and show the success (or failure) of the generation, hopefully using a notification.