I'm using the code as in http://handsontable.com/demo/ajax.html on my Node.js server.
How do I pass all the data in the table to the JS script that will update the JSON file?
$jQuery(document).ready(function ($) {
$.ajax({
url: "json/load.json",
dataType: 'json',
type: 'GET',
success: function (res) {
handsontable.loadData(res.data);
$console.text('Data loaded');
}
});
});