Thanks I have used the the below code
columnTemplate: {
render: function(ui){
var rd = ui.rowData,
level = rd.pq_level;
if(level != null){
//to display group titles in first visible cell of summary rows.
if(rd.pq_gsummary && this.getFirstVisibleCI() == ui.colIndx){
var data = this.pageData(), i = ui.rowIndx, dis = this.option('groupModel.dataIndx');
while(i--){
rd = data;
if(rd.pq_level == level){
return {text: "<i>" + rd[ dis[ level ] ] + ":</i>", style: "text-align:right;"};
}
}
}
else{
//to indent group titles.
return {style: "padding-left:"+(level*20)+"px;"};
}
}
}
},
this.getFirstVisibleCI() == ui.colIndx condition always returning false not going in if condition
Where I am doing wrong Please suggest?