Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

No Scroll bars for subforms on Androids

Locked
v01ded
Posts: 2
Joined: Tue Sep 13, 2011 7:13 pm

No Scroll bars for subforms on Androids

Unread post 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
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: No Scroll bars for subforms on Androids

Unread post 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
v01ded
Posts: 2
Joined: Tue Sep 13, 2011 7:13 pm

Re: No Scroll bars for subforms on Androids

Unread post 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
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: No Scroll bars for subforms on Androids

Unread post by admin »

Thanks Stanley

Steven
Locked