ecommerce1986 / mobiscroll

Automatically exported from code.google.com/p/mobiscroll
0 stars 0 forks source link

element holds focus #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago

Original comment by diosla...@gmail.com on 21 Jul 2011 at 5:56

GoogleCodeExporter commented 8 years ago
Fixed in 1.0.2

Original comment by diosla...@gmail.com on 28 Jul 2011 at 1:44