Customize save button
having in mind the templates that refine provides for views is there a way to modify the save button to always show on screen for the create pages?
2 Replies
Hi @Lost Spartan. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Yes, you can customize the save button in refine's create pages to always show on screen. Refine provides several ways to customize the save button in its UI components.
Customizing the Save Button
Using footerButtons prop
The
<Create/>
component in refine has a footerButtons
property that allows you to customize the buttons at the footer. You can use this to ensure the save button is always visible:
This approach is available in different UI frameworks that refine supports:
- Ant Design footerButtons
- Material UI footerButtons
- Chakra UI footerButtons
- Mantine footerButtons
Using saveButtonProps
Alternatively, you can use the saveButtonProps
property to customize the save button:
This approach is documented in Material UI saveButtonProps.
Using footerButtonProps (Material UI)
Material UI specifically offers a footerButtonProps
property:
This is documented in Material UI footerButtonProps.
Choose the approach that best fits your UI framework and requirements. The key CSS properties to make the button always visible are position: "fixed"
, appropriate positioning with bottom
and right
, and a high zIndex
value.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@244898948488101898> Kapa.ai is still learning and improving, please let me know how I did by reacting below.