Categories | Question details Back To List | ||
dhtmlxgrid How to use adjustColumnSize function for dynamic columns (like column type link) in dhtmlxgrid? Or how to call afterInit and adjustColumnSize in javascript? Answer posted by dhxSupport on Feb 26, 2009 03:41 adjustColumnSize methos will not work with dimanic columns (like *). To call this method after grid was loaded: mygrid.loadXML("grid.xml",function(){ mygrid.adjustColumnSize(1); }) |