Datatable column values

Hello,

i got a datatable with n columns. Now i want to access the values of a column which is filled with the collection property. How to access these values of the column with a loop?

Ok…got it …
dtable.eachRow(
function (row){
var a=$$(dtable).getText(row, columnid)
if(a= something){
result = result+1;
}
}
)

Hello!

You can use

$$(‘datatable’).getColumnConfig(id)

to get the column config of datatable.

If you use collection, so

$$('dt').getColumnConfig("someid").collection;

Example: https://snippet.webix.com/81tnz8up

Thx a lot for the informtion!