Checkbox Select Row - Datatable

Hi,

How can I implement a datatable with ability to select rows by a checkbox column?

Thanks.

https://docs.webix.com/api__ui.datatable_oncheck_event.html

on:{
    onCheck: function(row, column, state) {
        if (state) {
            this.select(row, true);
        } else {
            this.unselect(row);
        }
    }
}