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
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
No Scroll bars for subforms on Androids
Re: No Scroll bars for subforms on Androids
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
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
-
- Posts: 2
- Joined: Tue Sep 13, 2011 7:13 pm
Re: No Scroll bars for subforms on Androids
As a workaround, I added 2 buttons on the main form that will callup the JavaScript functions to scroll the DIV of the subform:
My humble contribution to the community!
Regards
Stanley Lim
Code: Select all
function scrollSubFromUp(name, steps){
document.getElementById(name).scrollTop-=steps;
}
function scrollSubFromDown(name, steps){
document.getElementById(name).scrollTop+=steps;
}

Regards
Stanley Lim