Author Topic: Can the detail model be expanded at the loading time of the grid?  (Read 2196 times)

rickpqu

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 26
    • View Profile
Can the detail model be expanded at the loading time of the grid?
« 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.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6265
    • View Profile
Re: Can the detail model be expanded at the loading time of the grid?
« Reply #1 on: September 27, 2016, 10:12:08 pm »
This can be done by adding pq_detail property to rowData.

rowData.pq_detail = { 'show': true };

rickpqu

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 26
    • View Profile
Re: Can the detail model be expanded at the loading time of the grid?
« Reply #2 on: September 27, 2016, 11:55:44 pm »
Thanks. That worked.