I would like to implement a clear button showed on popup in mobiscroll date picker
There is an option to use button3
, however I'm not able to clear the input and hide the scroller.
jQuery(this).mobiscroll({
preset: 'date',
theme:'ios',
button3Text:'clear',
button3: function(input, inst){
jQuery(this).val();
inst.close();
}})
I was trying use the input and inst
parameter from function.
Unfortunately I'm not able to make it work.
Could you plese help?
Thanks Lucas