ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Mendrace on May 15, 2016, 05:53:54 pm
-
Hi.
I need a summary Row with remote Data (JSON). Is that possible?
Thanks
-
Yes. There are 2 kind of summaries, both can be used with remote and local data:
1. For manual summary with remote data, add summaryData option in the load event of the grid.
load: function(){
this.option( 'summaryData', summary_data_array );
}
2. For auto summary, define grandSummary: true in groupModel and add aggregate types in column.summary.type
-
Thanks a lot.