jqxGrid columncomputed when exported as json does not have the value of the computed column(Total) in the json export.
Price, Quantity and Total are the columns. Here computed column is Total when I do JSON export data into a variable. But the Total value correctly shows in the grid when exported its null or no value, shown below..
$(“#jsonExport”).click(function () {
var data = $(“#jqxgrid”).jqxGrid(‘exportdata’, ‘json’);
alert(data);
});
Here the alert data has [{“Quantity”:”2.00″,”Price”:”$100.00″,”Total”:””},{“Quantity”:”3.00″,”Price”:”$200.00″,”Total”:””}]
Here Total has no value in the JSON export . Can you please help me with this.