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 -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -