Hi Team,
I have imported CSV file and displayed table in grid. While exporting the edited data, it allows me to save the file. i.e. It saves the file in the downloads folder.
How can i redirect it to save the edited contents on the grid back to where it was imported from
$(“#csvExport”).click(function () {
$(“#jqxgrid”).jqxGrid(‘exportdata’, ‘csv’, ‘jqxGrid’);
});
This section of code is where i need to manipulate. could you please suggest. This above code helps me save the file in downloads folder. Rest all works absolutely fine.