Page 1 of 1

Ensuring the Panel can scroll horizontally

Posted: Fri Jul 05, 2013 2:36 pm
by Andy Parker

Hi (again)

I need to display 4 images one after the other in a Panel, these images are sourced from internet addresses.

I've tried using DIV and I've tried using HTML, but the panel will not scroll.

On my Android phone, I can see the first couple of images but I cannot drap them across to see the others.

The test code I have that works in a browser simply creates the table in HTML, this has scroll bars in the browser, but is not scrollable in the panel, can you help please?

var mainhtml='<!DOCTYPE html SYSTEMMain Title of Web PageMenu
HTML
CSS
JavaScriptPic1 herePic 2 herePic 3 here etc etcFinal row here';


Ensuring the Panel can scroll horizontally

Posted: Fri Jul 05, 2013 4:02 pm
by Andy Parker

I've fixed this with some css:

added a class:

.panelclass {
width: 99%;
overflow: auto;
border: 1px red solid;
}


Ensuring the Panel can scroll horizontally

Posted: Fri Jul 05, 2013 4:19 pm
by Kateryna Grynko

Hi Andy,

Thank you for update.