Aslan Kussein
Aslan Kussein

Reputation: 83

GetAllValues from datatview in a webix

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

Answers (1)

Roman V.
Roman V.

Reputation: 298

To get some specific record

console.log(data.getItem(id));

And to get all records

console.log(data.serialize())

Upvotes: 1

Related Questions