documentation/versioned_docs/version-3.xx.xx/api-reference/mui/components/buttons/edit.md
<EditButton> uses Material UI <Button> component. It uses the edit method from useNavigation under the hood. It can be useful to redirect the app to the edit page route of resource.
:::info-tip Swizzle You can swizzle this component to customize it with the refine CLI :::
// visible-block-start
import {
useDataGrid,
DataGrid,
GridColumns,
List,
// highlight-next-line
EditButton,
} from "@pankod/refine-mui";
const columns: GridColumns = [
{ field: "id", headerName: "ID", type: "number" },
{ field: "title", headerName: "Title", minWidth: 400, flex: 1 },
{
field: "actions",
headerName: "Actions",
renderCell: function render({ row }) {
// highlight-next-line
return <EditButton size="small" recordItemId={row.id} />;
},
align: "center",
headerAlign: "center",
minWidth: 80,
},
];
const PostsList: React.FC = () => {
const { dataGridProps } = useDataGrid<IPost>();
return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
</List>
);
};
interface IPost {
id: number;
title: string;
}
// visible-block-end
render(
<RefineMuiDemo
resources={[
{
name: "posts",
list: PostsList,
edit: () => <RefineMui.Edit>Rest of the page here...</RefineMui.Edit>,
},
]}
/>,
);
recordItemIdrecordItemId is used to append the record id to the end of the route path for the edit route.
const { useRouterContext } = RefineCore;
// visible-block-start
import { EditButton } from "@pankod/refine-mui";
const MyEditComponent = () => {
return (
<EditButton
resourceNameOrRouteName="posts"
// highlight-next-line
recordItemId="1"
/>
);
};
// visible-block-end
const EditPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
edit: EditPage,
},
]}
DashboardPage={MyEditComponent}
/>,
);
Clicking the button will trigger the edit method of useNavigation and then redirect the app to /posts/edit/1.
:::note
<EditButton> component reads the id information from the route by default.
:::
resourceNameOrRouteNameIt is used to redirect the app to the /edit endpoint of the given resource name. By default, the app redirects to a URL with /edit defined by the name property of resource object.
const { useRouterContext } = RefineCore;
// visible-block-start
import { EditButton } from "@pankod/refine-mui";
const MyEditComponent = () => {
return (
<EditButton
// highlight-next-line
resourceNameOrRouteName="categories"
recordItemId="2"
/>
);
};
// visible-block-end
const EditPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
},
{
name: "categories",
edit: EditPage,
},
]}
DashboardPage={MyEditComponent}
/>,
);
Clicking the button will trigger the edit method of useNavigation and then redirect to /posts/edit/2.
hideTextIt is used to show and not show the text of the button. When true, only the button icon is visible.
const { useRouterContext } = RefineCore;
// visible-block-start
import { EditButton } from "@pankod/refine-mui";
const MyEditComponent = () => {
return (
<EditButton
// highlight-next-line
hideText={true}
/>
);
};
// visible-block-end
const EditPage = () => {
const params = useRouterContext().useParams();
return <div>{JSON.stringify(params)}</div>;
};
render(
<RefineMuiDemo
initialRoutes={["/"]}
resources={[
{
name: "posts",
list: MyEditComponent,
edit: EditPage,
},
]}
/>,
);
accessControlThis prop can be used to skip access control check with its enabled property or to hide the button when the user does not have the permission to access the resource with hideIfUnauthorized property. This is relevant only when an accessControlProvider is provided to <Refine/>
import { EditButton } from "@pankod/refine-mui";
export const MyListComponent = () => {
return (
<EditButton accessControl={{ enabled: true, hideIfUnauthorized: true }} />
);
};
:::tip External Props It also accepts all props of Material UI Button. :::