Relative Content

Tag Archive for angularkendo-uikendo-grid

Kendo ui angular grid scroll issue when popup is opened

setHoveredCell(item: any, swConfig: any, event: any,popupgrid: TemplateRef<{ [Key: string]: unknown }>) {
event.preventDefault();
if (this.transposed ? (swConfig.hwConfig == item.hwConfig) : (swConfig.testCase == item.testCase)) {
if ((!item.hasOwnProperty(‘hovered’) || item.hovered == false)) {
Object.defineProperty(swConfig, ‘hovered’, {
value: true,
writable: true,
enumerable: true,
configurable: true
});

Kendo UI for Angular: Icon type is set to ‘svg’, but only font icon name is provided. The “plus” font icon will be rendered instead

I’m using a kendo-ui angular grid like this one: stackblitz example of a kendo-ui grid with details and since I upgraded angular to version 17 I get the following warning: Kendo UI for Angular: Icon type is set to 'svg', but only font icon name is provided. The "plus" font icon will be rendered instead. I don’t have access to that icon to change it. I tried the solution here Kendo UI for Angular shows warnings when SVG icons are not used but it didn’t help. How to get rid of this warning, please?