I would like to edit the grouped column in grouping view, also, i would like to hide the column in grid. after i hide the column in groupview , i can' edit the column, how to fix?
Thx.
To hide column from list, dont set hidden: true. Instead:
$grid["groupingView"]["groupColumnShow"] = array(false);
This will hide grouped column from list and it will be displayed in edit dialog.
always set $grid["groupingView"]["groupColumnShow"] = array(false); and don't set hidden in column, but i still can't edit the field in edit dialog.
I verified this issue, and this function is part of core JS jqgrid lib.
So, Currently it is not doable.
Hi,
I had the same issue.
The following solve the issue:
$grid["groupingView"]["groupColumnShow"] = array(false);
and further down in the script, when you set your column:
$col["hidden"] = true; // HIDE this column
$col["editrules"] = array("edithidden"=>true);
Regards
See Line 43, 83, 85
https://gist.github.com/gridphp/81e7d2e3e0c9f808a4061f93d0a38670