Enterprise Edition
Version: 4.xx.xx
Swizzle Ready
Boolean
This field is used to display boolean values. It uses the <Tooltip>
values from Ant Design.
Good to know:
You can swizzle this component to customize it with the Refine CLI
Usage
Let's see how we can use <BooleanField>
with the example in the post list:
localhost:3000
import {
List,
useTable,
BooleanField,
} from "@refinedev/antd";
import { Table } from "antd";
const PostList: React.FC = () => {
const { tableProps } = useTable<IPost>();
const TrueIcon = () => <span>✅</span>;
const FalseIcon = () => <span>❌</span>;
return (
<List>
<Table {...tableProps} rowKey="id">
<Table.Column dataIndex="id" title="ID" />
<Table.Column dataIndex="title" title="Title" width="50%" />
<Table.Column
dataIndex="status"
title="Published"
render={(value) => (
<BooleanField
value={value === "published"}
trueIcon={<TrueIcon />}
falseIcon={<FalseIcon />}
valueLabelTrue="published"
valueLabelFalse="unpublished"
/>
)}
width="50%"
/>
</Table>
</List>
);
};
interface IPost {
id: number;
title: string;
status: "published" | "draft" | "rejected";
}
Was this helpful?
API Reference
Properties
External Props:
This field also accepts all props of Ant Design's Tooltip component.
Was this helpful?