ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: interloper10 on February 09, 2016, 11:53:30 pm

Title: colModel of detailModel
Post by: interloper10 on February 09, 2016, 11:53:30 pm
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" );

Title: Re: colModel of detailModel
Post by: paramvir on February 10, 2016, 04:27:32 pm
yes that's possible for new detail views.

colModel of detailModel can be directly obtained from gridDetailModel in the context of this demo: http://paramquery.com/pro/demos/nesting

Code: [Select]
  var detailModelcolModel = gridDetailModel.colModel;
  //iterate over the columns and manipulate them..