HI ParamQuery,
I am using nested column. My code will be like this. obj.colModel = [
{ title: "Name ",align:'left',width:200,halign:'center',align:'left'},
{ title: "Voyages",align:'center', width:250,
colModel:[{title:" UMS ",align:'center', width:250},
{title:" DO",align:'center',width:250},
{title:"GO",align:'center',width:350},
{title:" MGO",align:'center', width:250}]},
];
Here i want to alert the title MGO. I used following code to alert the title. var CM = $grid.pqGrid("option", "colModel");
alert(CM[5].title)
But its throwing error. I can able to alert the name and voyages title. I can't able to alert the nested colmodel title.
Please provide some solutions for this.