Hi all,
I’d like to know if is possible to get a cell’s value through rowData and column index instead of column datafield id
i.e.
var rowData = $(‘#jqxGrid’).jqxGrid(‘getrowdata’, 0); (or var rows = $(‘#jqxgrid’).jqxGrid(‘getdisplayrows’); and then rowData=rows[0]) )
var value = rowData[0]; //usually should be rowData[‘datafieldname’];
in this example I should get the first column of the first row in the table value.
My need is to have a sort of dynamic grid: I don’t know from scratch how many columns I’ll have and the datafields’ names and columns’ definition are built dynamically server side.
Thanks in advance
Jonathan