Hi,
I created grid definition using kendo mvvm framework and I'm trying to add tooltip for text inside column header. I thought I can use headerTemplate so I defined tooltip mvvm control inside header template but tooltip is not appearing. It looks that it’s imposible to define any mvvm control inside headerTemplate property? Is my assumption correct?
{
"field"
:
"UnitPrice"
,
"headerTemplate"
:
"<span data-role=\"tooltip\" title=\"tooltip message\"> Header should have tooltip</span>"
}
Full example is available here: http://jsbin.com/zizawey/1/
Thanks in advance.