:: Forum >>

How to Increase the width of Row Number coulmn?

As i have more number of coulmns and more number of records , I need to show three digits row number. But after row no 99, its showing 3 dots '...' instead of 100. How to fix it?
Sammil
Tuesday, December 27, 2005
Are you settings columns widths in the style sheet?
I think IE is the only browser that adds the ...
Tony
Tuesday, December 27, 2005
http://activewidgets.com/grid.howto.style.headers/row-header-width.html
Tuesday, December 27, 2005
I think you want this?!

obj.setSelectorVisible(true);
    obj.setSelectorText(function(i){return this.getRowPosition(i)+1});
    obj.setSelectorWidth(obj.getRowCount()>100?18:15);

Jarlau
Tuesday, December 27, 2005
HI,
This below method is working fine. Thanks
obj.setRowHeaderWidth(50);
Sammil
Wednesday, December 28, 2005

This topic is archived.


Back to support forum

Forum search