Good call!
I forgot to add that option. Its easy to implement tho:
On the file system/application/helpers/flexigrid_helper.php on line 57
Replace:
$grid_js .= "{display: '".$value[0]."', ".($value[2] ? "name : '".$index."'," : "")." width : ".$value[1].", align: '".$value[3]."'},";
With:
$grid_js .= "{display: '".$value[0]."', ".($value[2] ? "name : '".$index."'," : "")." width : ".$value[1].", align: '".$value[3]."'".(isset($value[5]) && $value[5] ? ", hide : true" : "")."},";
Then, in the flexigrid.php controller, on the colModel array insert a new BOOLEAN value at the end, TRUE or FALSE:
E.g.
$colModel['id'] = array('ID',40,TRUE,'center',2,TRUE);
TRUE - Hidden
FALSE - Show
If you do not insert a value it will show by default.
E.g.
$colModel['id'] = array('ID',40,TRUE,'center',2);
I will add this later to the download zip.
Thanks