如何在休息时管理中扩展ReferenceInput和AutocompleteInput字段的大小?
<Create title="My title" {...props}>
<SimpleForm>
<TextInput label= "field 1" source="f1" validate={[ required, minLength(3), maxLength(20) ]} />
<ReferenceInput label="field 2" source="f2" validate={[ required ]} reference="reference1" allowEmpty>
<AutocompleteInput optionText="f3" />
</ReferenceInput>
</SimpleForm>
</Create>
Image: Default field size in red. Desired size in blue
提前致谢
答案 0 :(得分:1)
您可以使用elStyle和options props将样式传递给基础Material UI组件。