Hello!
I use Angular 18 and just updated from Kendo v. 17 to 18.2.0 and I get an error in the grid regarding the rowDragHintTemplateRef.
The issue seems to be in this block of code
if (this.rowReorderable) {
const allColumns = this.columnList.toArray();
const rowReorderColumn = allColumns.find(column => column.isRowReorderColumn);
return rowReorderColumn.rowDragHintTemplateRef;
}
}
because rowReorderColumn is undefined.
Apart from that, I get this error when I use the latest theme
Undefined function.
╷
28 │ @return math.round(color.channel( $color, "red" ));
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
╵
node_modules\@progress\kendo-theme-core\scss\functions\_color.import.scss 28:24 k-color-red()
node_modules\@progress\kendo-theme-core\scss\functions\_color.import.scss 604:46 k-color-luminance()
node_modules\@progress\kendo-theme-core\scss\functions\_color.import.scss 694:12 k-contrast-legacy()
node_modules\@progress\kendo-theme-core\scss\color-system\_functions.import.scss 233:79 k-generate-color-variations()
src\styles.scss 18:41
Any guidance would be appreciated.