【发布时间】:2020-06-05 12:22:14
【问题描述】:
尝试使用 KeyboardDatePicker。在一种形式中,输入字段完全可以,但在另一种形式中,我只需要一个图标即可打开并选择日期。
<KeyboardDatePicker
disableToolbar
variant="inline"
// inputVariant="outlined"
autoOk
format="dd/MM/yyyy"
id="date-picker-inline"
// label="Date picker inline"
value={selectedDate}
onChange={handleDateChange}
InputAdornmentProps={{ position: "start"}}
KeyboardButtonProps={{
'aria-label': 'change date',
}}
/>
可以用 props 设置吗?
【问题讨论】:
标签: reactjs material-ui