Reputation: 83
how to get all values from dataview in a webix, this still doesn't work by me, because the table is not to be selected
var data = $$('experienceTable');
console.log(data.getSelectedId())
Upvotes: 0
Views: 108
Reputation: 298
To get some specific record
console.log(data.getItem(id));
And to get all records
console.log(data.serialize())
Upvotes: 1