3.2.0

scroll bars?

Hey all!
ok, my problem is that i cannot seem to get the Hor. Scroll bar (both in IE and Moz). I tried <div> and this made the grid disappear in moz!! so what should i do?


Another problem is that i cannot confine the grid with <table>, which is another thing i was hoping to do. i only see a sliver of the grid in the table.

Also, is there any other way to confine the girds size?

I'm doing all of this in php and the code is right out of the basic.php in the example.

Thanks!
Ross
March 16,
Make sure you do not have a doctype of XHTML. This messed up my grids scroll bars.
March 16,
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">


I ripped this from a post, but it didnt help :(
Ross
March 16,
If you want to use a horizontal scrollbar, add this to the top of your page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

It describes the path the browser needs to load its DTD file.
Pascal
March 17,
The php example creates bad javascript with syntax errors and has to be fixed. Also I found that the grid disappears unless you put it inside a div and you have to have both a height and a width on that div or it will still disappear.

And of course you cannot use an XHTML doctype or it will mess up the scroll bars.

Everything else seems fine, at least for what I am doing.
Kai-Li
June 1,
scroll bar for Firefox,

add the line 'overflow: -moz-scrollbars-vertical;' to your style.
6np
August 16,

This topic is archived.

See also:


Back to support forum