Page 1 of 1

No Scroll bars for subforms on Androids

Posted: Wed Sep 28, 2011 1:42 pm
by v01ded
Dear All,

I would like to thank the developers of nuBuilder for this great platform. It's a god send.

However i encountered a problem recently. I'm trying to build a system that runs on Android Tablet and found that there is no scroll bars in the sub forms and text area! For text aream scrolling is still possible by tapping the text area and flipping the fingers. However, this does not work in sub-forms.. Anyone have any ideas or workaround??

Regards
Stanley

Re: No Scroll bars for subforms on Androids

Posted: Thu Sep 29, 2011 8:54 am
by admin
v01ded,

We found the same thing in the iPad.
The way to scroll in the iPad browser is to drag down with 2 fingers.
The issue isn't so much nuBuilder's, it is to do with the browser's implementation of HTML functionality.

Steven

Re: No Scroll bars for subforms on Androids

Posted: Fri Sep 30, 2011 4:19 am
by v01ded
As a workaround, I added 2 buttons on the main form that will callup the JavaScript functions to scroll the DIV of the subform:

Code: Select all

function scrollSubFromUp(name, steps){
document.getElementById(name).scrollTop-=steps;
}


function scrollSubFromDown(name, steps){
document.getElementById(name).scrollTop+=steps;
}
My humble contribution to the community! ;)
Regards
Stanley Lim

Re: No Scroll bars for subforms on Androids

Posted: Wed Oct 05, 2011 8:05 am
by admin
Thanks Stanley

Steven