Hello,
I am wondering how to resize the webgrid columns on the client side. Simple snippet would be greatly appreciated.
Thanks,
Mike
The column object has a setWidth() method:
var grid = igtbl_getGridById("UltraWebGrid1");grid.Bands[0].Columns[0].setWidth(100);
Thanks. I finally found the javascript object in the help file. Duh... That worked.