启用手动输入日期时间需要做些什么?因为它显示为只读。但是一旦将readOnly设置为false(input = {true}),就会产生一些错误
import React, { Component } from "react";
import DatetimeRangePicker from 'react-datetime-range-picker';
class Test extends Component {
<DatetimeRangePicker
startDate= {this.state.startDate}
endDate={this.state.endDate}
onStartDateBlur={this.startDateBlurHandler}
onEndDateBlur={this.endDateBlurHandler}
timeFormat="HH:mm"
dateFormat="DD/MM/YY"
inputProps={{ placeholder: ('Enter Date')}} />
}
答案 0 :(得分:0)
通过将输入属性值设置为true,我们可以启用手动输入输入字段。我将在下面提供示例代码以及链接,以便您了解更多信息https://www.npmjs.com/package/react-datetime-range-picker
<DatetimeRangePicker
startDate= {this.state.startDate}
endDate={this.state.endDate}
onStartDateBlur={this.startDateBlurHandler}
onEndDateBlur={this.endDateBlurHandler}
input = {true}
timeFormat="HH:mm"
dateFormat="DD/MM/YY"
inputProps={{ placeholder: ('Enter Date')}} />
}
答案 1 :(得分:0)
来自“版本”:“ 2.0.1”的问题已修复。使用“ input = {true}”属性可以启用手动输入日期时间