Getting row data from invisible row in jqGrid -
how can data row that's not in current page, knowing row id? grid has datatype:"json"
i tried using
$('#grid').jqgrid ('getrowdata', rowid);
but works visible rows (rows in current page)
i suppose use datatype: "local"
. in case can use getlocalrow
:
var rowdata = $('#grid').jqgrid ('getlocalrow', rowid);
Comments
Post a Comment