Categories | Question details Back To List | ||
what is index in grid.setColumnHidden(index,true) ?Must I modify the xml? Answer posted by Support on May 20, 2008 05:54 This command hide column by index, for example mygrid.setColumnHidden(0,true) // hide first column mygrid.setColumnHidden(3,true) // hide 4th column You need not modify loaded data to use setColumnHidden command |