Hi Guys
I’m struggling with the grid export/import feature, I’m trying to save the grid layout as a JSON string using
$('#grid').jqGridExport({ exptype: 'jsonstring' }) ;
and then reloading it using
$(“#grid”).jqGridImport({imptype: “jsonstring”, impstring: response});
However I couldn’t get the import to work. on debugging it I found that the export function (xmlJsonClass.toJson) serializes all property values including numbers and Booleans as strings (enclosed in double quotes), I changed this function not to have double quotes for numbers and Booleans and now the import works fine.
However the properties that uses functions such as beforeRequest, loadComplete those are still not working. And I cannot figure out how to get this working.
Please help
Thanks
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top