默认情况下,在admin-on-rest中选择SelectInput的第一个选项

时间:2018-04-22 15:17:03

标签: admin-on-rest

我有SelectInput有两个选择:

<SelectInput source="existing_user" choices={[
        { id: 'existing', name: 'Existing'},
        { id: 'new', name: 'New User' },
  ]} validate={required} />

我还有一个DependInput组件,可以呈现其他字段,具体取决于existing_user的值。 我希望默认选择第一个选项(&#39;现有&#39;)。但是,在加载表单时,SelectInput字段始终为空,因此没有其他字段可见: enter image description here

我尝试将基础SelectField&#39; value属性设置为&#39;现有&#39;通过options,但我无法编辑SelectInput(点击第二个选项无效)。

我可能遗漏了一些简单的东西,因为这应该是基本的,但我无法在documentation中找到任何有用的东西。

1 个答案:

答案 0 :(得分:0)

defaultValue或包含它的表单上使用SelectInput应该可以解决问题: