B bluedude Well-Known Member Licensed User Longtime User Nov 15, 2012 #1 Hi, Can I disable the vertical scroll of a webview? Cheers,
warwound Expert Licensed User Longtime User Nov 15, 2012 #2 One way would be to wait for the page to load and then set the CSS overflow style to hidden. Probably set the HTML BODY overflow attribute to hidden using javascript like this: B4X: document.body.style.overflowY='hidden'; Martin. Upvote 0
One way would be to wait for the page to load and then set the CSS overflow style to hidden. Probably set the HTML BODY overflow attribute to hidden using javascript like this: B4X: document.body.style.overflowY='hidden'; Martin.