Hi
I am trying to use the rowselection.htm sample provided for jqxgrid, using this file i would like to display the
row data of the selected row
in a as below format
cell header : cell value
cell header : cell value
cell header : cell value
cell header : cell value
I have tried using the below sample but i couldn’t achieve it..
$(‘#jqxgrid’).bind(‘rowselect’, function (event)
{
var args = event.args;
var row = args.rowindex;
var details = $(‘#jqxgrid’).jqxGrid(‘getrowdetails’, row);
alert(‘ Row data … ‘ + details);
});
Kindly help me on fixing this issue.
Regards
Nick