Count of Checked Items in Datatable

Greetings, Webix Team!

Is there a way to count the number of checked items in a Datatable?

Thanks!

https://docs.webix.com/api__link__ui.datatable_find.html

var checkedCount = table.find(function(obj){
    return !!obj.$checked;
}).length;

Thanks, integral!

Cheers!