Open GoogleCodeExporter opened 9 years ago
I temporary solved using a workaround: on every focus change, I make move the
scroller in the way the focused element never exits the visible area.
You can take a look at my code, commands i call on the onReady event of the
page:
<code>
$('#scroller-wrapper input, #scroller-wrapper select').focusin(function() {
scroller_object.scrollToElement('#' + $(this).attr('id'), 0);
});
setTimeout(function () {
scroller_object.refresh();
}, 100);
</code>
Original comment by gianfras...@gmail.com
on 21 Sep 2012 at 11:45
Original issue reported on code.google.com by
gianfras...@gmail.com
on 21 Sep 2012 at 9:39