Is is possible to change the column model of detailModel (for new detailModel views).
My (nested) detailModel's colModel is the same as my main grid colModel (one column model definition used for both). I would like to show/hide my detailModel colModel based on columns show/hidden in the main grid.
On the toolbar show/hide column change listener, I have:
...
}, listener: { 'change': function (evt) {
...
//get the detailModel
var detailModel = $grid.pqGrid( "option", "detailModel" );
//get the colModel of my detailModel
var detailModelcolModel = detailModel( "option", "colModel" );