I am working on a backbone based single page application and having trouble with the tooltips. I figured using the "filter" option would be the best method so I currently have something like
I'm not sure but it seems as though all the tooltips break after a a new view is loaded even though the body is not changed, only some parts inside it.
Also I notice that when I look out $('body').data() there only seems to be whatever the last tooltip I bound so in the above instance I see options.filter : ".bookmark" but not ".tooltip".
Maybe I'm missing something obvious but all help is appreciated
Thanks
$('body').kendoTooltip({
filter : ".tooltip"
});
$('body').kendoTooltip({
filter : ".bookmark",
content : "bookmark"
});
Also I notice that when I look out $('body').data() there only seems to be whatever the last tooltip I bound so in the above instance I see options.filter : ".bookmark" but not ".tooltip".
Maybe I'm missing something obvious but all help is appreciated
Thanks