I am using Jquery grid to populate my data. In one of my grids, I am populating nested object using,
{
name : 'student.roll',
index : 'student.roll',
sortable: false,
width : 120
}
Now that, I need to parse the list of roll numbers for some manipulation.
var lista = jQuery("#student-grid").getDataIDs();
for(i=0;i<lista.length;i++){
rowData=jQuery("#student-grid").getRowData(lista[i]);
}
From this when i try to get rowData.student.roll, its trying to fetch an object called student but its a field name out there. How can I fetch the value of roll from jqgrid? Please help.