New to Kendo UI for AngularStart a free 30-day trial

RowClassFn

Represents the callback that is used by the rowClass property.

typescript
public rowCallback({ dataItem, index }: any): any {
  const isEven = index % 2 == 0;
  return {
    even: isEven,
    odd: !isEven
  };
}
Not finding the help you need?
Contact Support