我使用material-table作为我的数据表。
我怎样定制“material-tablelookup”组件所有部分?(访问该组件的每个元素以添加额外的逻辑和样式)
)
const columns = [
{
title: "Is_Active",
field: "is_active",
cellStyle: { textAlign: "center", padding: "0px", width: "7%" },
render: (rowData) => {
return rowData.is_active ? (
<CheckCircleOutlineIcon style={{ fill: "green" }} />
) : (
<HighlightOffIcon style={{ fill: "red" }} />
);
},
lookup: {
1: "yes",
0: "no",
},
type: "enum",
},
];
然后:
<MaterialTable
columns={columns}
// other props...
/>
感谢您的帮助
1条答案
按热度按时间i7uq4tfw1#
我找到了问题的答案!
您可以在列标识符对象中使用filterComponent来覆盖过滤器组件(在本例中,我使用了Select Component🤪),如下所示:
我希望我的回答能帮助你解决这个问题👍