ParamQuery Grid
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Search
Login
Register
ParamQuery grid support forum
»
General Category
»
ParamQuery Pro Evaluation Support
»
How to load the detail grid with data when the page first loads?
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to load the detail grid with data when the page first loads? (Read 2343 times)
zvardar
Newbie
Posts: 1
How to load the detail grid with data when the page first loads?
«
on:
July 19, 2016, 09:00:48 am »
Hi,
We would like to fill the details grid, by using some of the cells in the first row of the master data when the page first loads, before the rowClick event.
How could it be done?
Thank you for your help.
Regards.
Logged
paramvir
Administrator
Hero Member
Posts: 6310
Re: How to load the detail grid with data when the page first loads?
«
Reply #1 on:
July 19, 2016, 09:45:06 am »
detail view/grid is initialized only ( for performance reasons ) when row in parent grid is expanded by
1. user interaction
or
2. adding show: true in the pq_detail property of the rowData.
rowData.pq_detail = { 'show': true };
Reference to first row data in main grid can be obtained by
Code:
[Select]
this.getRowData({rowIndx: 0})
inside the detailModel.init() callback and you can show it in the detail grid using column.render callback.
Hope it helps.
«
Last Edit: July 19, 2016, 09:52:33 am by paramquery
»
Logged
Print
Pages: [
1
]
« previous
next »
ParamQuery grid support forum
»
General Category
»
ParamQuery Pro Evaluation Support
»
How to load the detail grid with data when the page first loads?