Hi Team,
var data = \$("#jqxgrid").jqxGrid('exportdata', 'csv');
console.log(data);
By using the above code, i have taken my entire grid data in variable ‘data’. When i do console.log(data), i see this at the console….
"Number","Id","Name"
"1.00","345.00","Dimitar"
"2.00","475.00","Ivailo"
"3.00","605.00","Ashwin"
I want to ensure that i remove the double quotes which i get for each row. How do i achieve this ? Also, is it possible to remove the first column header from the variable data. Since all these rows are together present in the variable ‘data’, i am finding it difficult to do so. Please help !!!!!!