:: Forum >>

Hide right scroll bar??

How would I hide the right scroll bar in this example?

var obj = new AW.UI.Grid;
obj.setColumnCount(4);
obj.setRowCount(0);
obj.setSize(800,20);
obj.setStyle("border-color", "white");
obj.setHeaderText("header text", 0);

document.write(obj);


Thank you!!
Tom Green
Wednesday, March 14, 2007
Maybe this way -

obj.setScrollBars("none");
obj.onScrollBarsChanging = function(){
return 1; // cancel change
}
Alex (ActiveWidgets)
Thursday, March 15, 2007

Righteous! That worked. Thank you!
Tom Green
Thursday, March 15, 2007

This topic is archived.


Back to support forum

Forum search