horizontal scrollbar design
I want to short horizontal scrollbar to scrollable area because I use
obj.setFixedLeft(5);
How is it possible?
obj.setFixedLeft(5);
How is it possible?
Thierry
March 24,
<style>
#myGrid .aw-bars-box {
width: auto;
left: 300px;
right: 0px;
}
#myGrid .aw-bars-box {
width: expression(this.parentElement.clientWidth - 300);
}
#myGrid .aw-bars-box .aw-bars-spacer {
margin-left: -300px;
}
</style>
<script>
var obj = new AW.Grid.Extended;
obj.setId("myGrid");
obj.setSize(700, 200);
obj.setCellData("cell");
obj.setHeaderText("header");
obj.setColumnCount(10);
obj.setRowCount(100);
obj.setFixedLeft(3);
document.write(obj);
</script>
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021