Skip to main content
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:

// visible-block-start
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";
}
// visible-block-end

render(
<RefineAntdDemo
resources={[
{
name: "posts",
list: PostList,
},
]}
/>,
);

API Referenceโ€‹

Propertiesโ€‹

External Props:

This field also accepts all props of Ant Design's Tooltip component.