I have a field in a grid which contains HTML marked-up content. I want this content to be shown in the tooltip for the column, but the HTML markup is shown. Is there a way of providing HTML markup content for a tooltip?
I'm setting the title attribute on the field as follows (simplified example):
{ width: 40, field: "Description", title: "Description", attributes: { title: 'x<b>yy</b>zz' } },
The tags in my title attribute here get shown in the tooltip rather than being interpreted as markup. Is there a way to tell it to render the content as HTML?