ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on October 06, 2017, 03:38:41 pm
-
Hello Team,
How can we expand/collapse on double click.
Please find attached image file for requirement reference.
Thanks
-
Please use cellDblCick event:
cellDblClick: function(evt, ui){
if(ui.$td.hasClass("pq-group-title-cell")){
ui.$td.find(".ui-icon").click();
}
},
-
Thanks team,
Now it is working fine... :)