hides/shows a column
| ind | number | the index of a column |
| state | boolean | true/false to hide/show a column |
Available only in PRO Edition
//hide the first column mygrid.setColumnHidden(0,true); //show the first column mygrid.setColumnHidden(0,false);
Back to top