title allows you to add a title inside the <Edit> component. If you don't pass title props, it uses the "Edit" prefix and the singular resource name by default. For example, for the "posts" resource, it will be "Edit post".
localhost:3000/posts/edit/123
import{Edit}from"@refinedev/chakra-ui"; import{Heading}from"@chakra-ui/react"; constPostEdit:React.FC=()=>{ return( <Edittitle={<Headingsize="lg">Custom Title</Heading>}> <p>Rest of your page here</p> </Edit> ); };
The <Edit> component reads the resource information from the route by default. If you want to use a custom resource for the <Edit> component, you can use the resource prop.
localhost:3000/custom/123
import{Edit}from"@refinedev/chakra-ui"; constCustomPage:React.FC=()=>{ return( <Editresource="posts"recordItemId={123}> <p>Rest of your page here</p> </Edit> ); };
If you have multiple resources with the same name, you can pass the identifier instead of the name of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name of the resource defined in the <Refine/> component.
The <Edit> component has a save button that submits the form by default. If you want to customize this button you can use the saveButtonProps property:
localhost:3000/posts/edit/123
import{Edit}from"@refinedev/chakra-ui"; constPostEdit:React.FC=()=>{ return( <EditsaveButtonProps={{ colorScheme:"red"}}> <p>Rest of your page here</p> </Edit> ); };
canDelete allows you to add a delete button inside the <Edit> component. If the resource has the canDelete property, Refine adds the delete button by default. If you want to customize this button you can use the deleteButtonProps property like the code below.
When clicked on, the delete button executes the useDelete method provided by the dataProvider.
The <Edit> component reads the id information from the route by default. recordItemId is used when it cannot read from the URL (when used on a custom page, modal or drawer).
If not specified, Refine will use the default data provider. If you have multiple data providers and want to use a different one, you can use the dataProviderName property.
To customize or disable the breadcrumb, you can use the breadcrumb property. By default it uses the Breadcrumb component from @refinedev/chakra-ui package.
localhost:3000/posts/edit/123
import{Edit,Breadcrumb}from"@refinedev/chakra-ui"; import{Box}from"@chakra-ui/react"; constPostEdit:React.FC=()=>{ return( <Edit breadcrumb={ <BoxborderColor="blue"borderStyle="dashed"borderWidth="2px"> <Breadcrumb/> </Box> } > <p>Rest of your page here</p> </Edit> ); };
You can customize the buttons at the header by using the headerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons, refreshButtonProps, listButtonProps }) => React.ReactNode which you can use to keep the existing buttons and add your own.
Implementation Tips:
If "list" resource is not defined, the <ListButton> will not render and listButtonProps will be undefined.
You can customize the buttons at the footer by using the footerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons, saveButtonProps, deleteButtonProps }) => React.ReactNode which you can use to keep the existing buttons and add your own.
Implementation Tips:
If canDelete is false, the <DeleteButton> will not render and deleteButtonProps will be undefined.