Hello,
The first is that:
But I solve changing the argument to any:
Then it works, but I got this problem because of content null:
So I changed the function to:
tooltip (args: any) {
if (args.data[args.column.field] != null){
let tooltip: Tooltip = new Tooltip({
content: args.data[args.column.field].toString()
}, args.cell);
}
}
And it works exactly how I want:
But the pages has become slow... the scroll of page works lagging now...
Do you know if there's something I can do to improve performance?
Version of syncfusion:
"@syncfusion/ej2-angular-calendars": "^18.2.44",
"@syncfusion/ej2-angular-dropdowns": "^18.2.44",
"@syncfusion/ej2-angular-grids": "^18.2.44",
"@syncfusion/ej2-angular-navigations": "^18.2.44",
"@syncfusion/ej2-angular-popups": "^18.2.44",
"@syncfusion/ej2-angular-querybuilder": "^18.2.44",
"@syncfusion/ej2-angular-splitbuttons": "^18.2.44",
Thank you