On an ios device, once the user sets the scroller date, the element holds focus
and doesn't allow you to reopen the scroller with the touch event. To get
around this I added '$(elm).blur();' below 'show=false;' in the 'this.hide'
function.
this.hide = function () {
this.settings.onClose(this.val, this);
$(':input:not(.dwtd)').attr('disabled', false).removeClass('dwtd');
dw.hide();
dwo.hide();
show = false;
$(elm).blur();
if (this.preset) this.settings.wheels = null;
$(window).unbind('resize.dw');
}
Original issue reported on code.google.com by stephen....@gmail.com on 6 Jul 2011 at 1:19
Original issue reported on code.google.com by
stephen....@gmail.com
on 6 Jul 2011 at 1:19