Hi Lulian,We have analyzed your query, the reported issue may occur due to the “enableVirtualization” property value was “true”. In virtualization mode TreeGrid rows are refreshed with new rows that are available for current view port area on scroll action due to this customized content inside the cell element was removed.Can you please set the “enableVirtualization” property as “false” and ensure this issue in your sample? If this issue was not resolved in your end please revert us with your sample it will helpful for us to serve you better.Please let us know if require further assistance on this.Thanks,Suriyaprasanth R.
|
//...
queryCellInfo(args){
if (args.column.field == "Product"){
$(args.cellElement).find("div.chartCell").ejChart({size: { height: "200", width:"200" }});
}
}
//...
|
if (args.column.field == "Product") {
.....
}
As a result , this is what I see in console:
Do you have another solution ?
Many thanks,
Iulian
|
.ejChart({
//...
enableCanvasRendering: true,
});
|