我使用react-day-picker,(DayPickerInput组件),我希望当用户单击相关字段时,当日选择器窗口打开时,用户将无法使用键盘输入值,并且他将可以通过弹出窗口更改值。
我不知道这是DayPickerInput的属性(我已搜索但未找到),还是该字段本身的常规属性...
最佳答案
好,
我只需要像这样添加readOnly:
<DayPickerInput
readOnly // just it!!
dayPickerProps={{localeUtils: MomentLocaleUtils, locale:"he"}}
className={theme.dayPicker}
placeholder={this.props.hintText}
value={value}
onDayChange={(date: moment.Moment) => this.handleChange(date.toDate())}>
</DayPickerInput>
(