Hi,

Can I do auto best fit for all the columns in one click @ client side(javascript)?

var WebGrid = ISGetObject("WebGrid1"); 
for(var i = 0 ; i< WebGrid.GetRootTable().Columns.length;i++){ 
  WebGrid.GetRootTable().Columns[i].ResizeBestFit(); 
}

above code takes time, do we have any special property to set in all the column in one go?


Regards

Sachin Jain