ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Hidehiro Ishii on December 11, 2017, 11:30:02 am
-
Hi Team,
Can I insert a indent without a top of grouping name like as an attached files ?
Regards,
Koichi
-
Add this to grid initialization object.
columnTemplate: {
render: function(ui){
if( !ui.rowData.pq_gtitle && ui.colIndx < this.option('groupModel.dataIndx').length ){
return "<p style='text-indent:20px;'>"+ui.cellData+"</p>";
}
}
},
-
Hi Team,
Thank you for your quick response.
I have tried your code and it works good!
Please close this case.
Regards,
Koichi