Refine AI
This is documentation for Refine 4.xx.xx, which is no longer actively maintained.
For up-to-date documentation, see the latest version (5.xx.xx).
Version: 4.xx.xx
Swizzle Ready
Tag
This field lets you display a value in a tag. It uses Material UI's <Chip> component.
Good to know:
You can swizzle this component to customize it with the Refine CLI
Usage
Let's see how we can use it in a basic list page:
localhost:3000/posts
Live previews only work with the latest documentation.
import {
  useDataGrid,
  List,
  TagField,
} from "@refinedev/mui";
import { DataGrid, GridColDef } from "@mui/x-data-grid";
const columns: GridColDef[] = [
  { field: "id", headerName: "ID", type: "number" },
  { field: "title", headerName: "Title", minWidth: 100, flex: 1 },
  {
    field: "status",
    headerName: "Status",
    display: "flex",
    renderCell: function render({ row }) {
      return <TagField value={row.status} />;
    },
    minWidth: 100,
    flex: 1,
  },
];
const PostsList: React.FC = () => {
  const { dataGridProps } = useDataGrid<IPost>();
  return (
    <List>
      <DataGrid {...dataGridProps} columns={columns} />
    </List>
  );
};
interface IPost {
  id: number;
  title: string;
  status: "published" | "draft" | "rejected";
}
Was this helpful?
API Reference
Properties
| Property | Type | Description | 
|---|---|---|
value ﹡  |  | Tag content  | 
External Props:
It also accepts all props of Material UI Chip.
Was this helpful?