ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: rickpqu on September 27, 2016, 09:07:36 pm

Title: Can the detail model be expanded at the loading time of the grid?
Post by: rickpqu on September 27, 2016, 09:07:36 pm
Hi, I am trying to show the detail content (detailModel) of every row at the time of loading of the table. How can I achieve this? I'd appreciate help.
Title: Re: Can the detail model be expanded at the loading time of the grid?
Post by: paramvir on September 27, 2016, 10:12:08 pm
This can be done by adding pq_detail property to rowData.

rowData.pq_detail = { 'show': true };
Title: Re: Can the detail model be expanded at the loading time of the grid?
Post by: rickpqu on September 27, 2016, 11:55:44 pm
Thanks. That worked.