我使用react-day-picker(daypickerInput component),并且我想要当用户单击相关字段时,当day-packer窗口打开时,用户将无法要使用键盘输入值,他可以通过弹出窗口更改值。
我不知道这是否是daypickerInput的属性(我搜索但没有找到),或者它是该领域本身的一般属性...
好的,我只需要添加这样的读取:
<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>
(