New to Kendo UI for Angular? Start a free 30-day trial
RowSelectableFn
Represents the callback that is used to determine whether a given data row will be selectable. Used by the isRowSelectable property.
ts
isRowSelectableCallback({ dataItem, index }) {
return index % 2 === 0;
}