如何不允许用户在输入字段中使用选择选项输入值



我使用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>  

相关内容

  • 没有找到相关文章

最新更新