Hello,
I have a grid and I display tooltips on some of its columns. It works OK. I also have a DropdownList. After DropdownList change I read data for the grid again. The grid then shows new data, but the tooltips are never visible.
This is the function for DropDownList change event:
function ViewChanged() { $('#AccountGrid').data('kendoGrid').setOptions(initialAccountGridOptions); $('#AccountGrid').data('kendoGrid').dataSource.filter({}); $('#AccountGrid').data('kendoGrid').dataSource.read();}I figured out that the tooltips are displaying when I delete the first line with setOptions function. But I need the setOptions function.
Is there a way how to use this function and still see the tooltips?
Thanks for answers.
