Hi,
I extract grid data using below code.
var data = \$("#jqxgrid").jqxGrid('exportdata', 'csv');
console.log(data);
the output of console.log(data) is as follows:
"name","roll no","city"
" rohan "," 334 "," san jose "
" sridevi "," 4 "," dallas "
" "," "," "
I want to save this grid data in a file. When i click on save button, i want to ensure that all the grid cells are filled and not empty. Like the last line of above output- the last row was left blank. Hence it took values as ” “,” “,” ”
I want to make sure that user fills in each and every grid. How can i ensure that from happening ?