ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: gwinterhalter on January 08, 2021, 07:37:01 pm

Title: Add dropdown to summary row of grouped rows
Post by: gwinterhalter on January 08, 2021, 07:37:01 pm
Please provide a sample for adding a drop down to a summary ow of grouped rows
Title: Re: Add dropdown to summary row of grouped rows
Post by: paramvir on January 11, 2021, 04:30:40 pm
summary rows are supposed to be read only. Please specify the purpose of adding a drop down to it.

Anyway dropdowns can be added to a column in summary row by adding the following editor definition to the column.

Code: [Select]
editor: function(ui){
if( ui.rowData.pq_gsummary ){ //if summary row of grouped rows.
return {
type:'select',
options:['a','b','c']
}
}
}