I am using JExcel in my project below code I need each time call script to set new value in JExcel cell. I need to know how to pass a set of array value to pass bulk data.
$('#id').jexcel('setValue', 'A1', 9999, true);
$('#id').jexcel('setValue', 'A8', 123, true);
$('#id').jexcel('setValue', 'C3', 3242, true);
$('#id').jexcel('setValue', 'D1', 'Test', true);
In the version 3 you can apply setRowData to change one row.