【发布时间】:2020-10-24 08:23:24
【问题描述】:
如何让一些复选框默认选中
<CheckboxGroupInput
source="my_junction_table"
choices={choices}
optionText={<KioskCheckbox />}
initialValue={[{ id: 4, checked: true }]} // don't work
defaultValue={[{ id: 4, checked: true }]} // don't work
options={{ checked: true }} // check all
optionValue="id"
/>
与
options={{ checked: true }}
所有的复选框都被选中
与
initialValue={[{ id: 4, checked: true, value: true }]}
defaultValue={[{ id: 4, checked: true }]}
没有任何效果,我已经在 react-admin repo 中看到了文档和代码,但找不到任何相关信息。
【问题讨论】:
标签: reactjs material-ui react-admin