documentation/docs/ui-integrations/ant-design/components/buttons/save-button/index.md
<SaveButton> uses Ant Design's <Button> component. It uses it for presantation purposes only. Some of the hooks that Refine has adds features to this button.
:::simple Good to know
You can swizzle this component to customize it with the Refine CLI
:::
Let's add logic to the <SaveButton> component with the saveButtonProps returned by the useForm hook:
setInitialRoutes(["/posts/edit/123"]);
// visible-block-start
import { Edit, useForm } from "@refinedev/antd";
import { Form, Input } from "antd";
const PostEdit: React.FC = () => {
// highlight-next-line
const { formProps, saveButtonProps } = useForm<IPost>();
return (
// highlight-next-line
<Edit saveButtonProps={saveButtonProps}>
<Form {...formProps} layout="vertical">
<Form.Item
label="Title"
name="title"
rules={[
{
required: true,
},
]}
>
<Input />
</Form.Item>
</Form>
</Edit>
);
};
interface IPost {
id: number;
title: string;
}
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
edit: "/posts/edit/:id",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<div>List page here...</div>} />
<ReactRouter.Route path="edit/:id" element={<PostEdit />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
The useForm hook exposes saveButtonProps to be passed to the <SaveButton> component which includes submitting the form action, button loading, and disable states.
hideText is used to hide the text of the button. When its true, only the button icon will be visible.
setInitialRoutes(["/posts"]);
// visible-block-start
import { SaveButton } from "@refinedev/antd";
const MySaveComponent = () => {
return (
<SaveButton
// highlight-next-line
hideText
/>
);
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineAntdDemo
resources={[
{
name: "posts",
list: "/posts",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<MySaveComponent />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineAntdDemo>
</ReactRouter.BrowserRouter>,
);
:::simple External Props
<SaveButton> also accepts all props of Ant Design's Button component.
:::