In here i want to get a date from the SharePoint list and set it in the datepicker,
FYI the date is coming properly from the API , i am using pnp js to retrieve data, but only the date value is not setting into the datepicker
In here i want to get a date from the SharePoint list and set it in the datepicker,
FYI the date is coming properly from the API , i am using pnp js to retrieve data, but only the date value is not setting into the datepicker
You could use the "minDate" attr of the datepicker.
<DatePicker
label='Start date'
isRequired={ false }
allowTextInput={ true }
ariaLabel={ desc }
firstDayOfWeek={ this.state.firstDayOfWeek }
strings={ DayPickerStrings }
minDate={new Date()}
value={ this.state.value }
onSelectDate={ date => this.setState({ value: date }) }
/>
@Sandesh Rathnayake,
This control has exposed a property to set its value:
You can define a Date varible in the state of react componment then set its value as below:
....