material ui - Datepicker persistent -


i use following code datepicker component:

<datepicker    hinttext="return on"    autook={true}    fullwidth={true}    onchange={(e, val) => this.setarrivaldate(val)} /> 

setarrivaldate method (action) in mobx store, sets

this.userinput.arrivaldate  

to given val.

i have clear button in form, triggers action in store well, set

this.unserinput.arrivaldate = '' 

using solution, displayed arrivaldate becomes persistant, since clear function of store triggers onchange event, automatically sets previous date.

any advice?


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

Command prompt result in label. Python 2.7 -