ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started 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
-
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.
editor: function(ui){
if( ui.rowData.pq_gsummary ){ //if summary row of grouped rows.
return {
type:'select',
options:['a','b','c']
}
}
}