I can not figure out how I can pass a function for content in an Asp.net core to tooltip. In the JQuery examples you can do something like this:
$("#Name").kendoTooltip({
content: function (e) {
return $(e.target).data('tooltip');
}
})@(Html.Kendo().Tooltip()
.For("#Name")
.AutoHide(true)
.Position(TooltipPosition.Top)
.Content("TEST TEST")
.Width(120)
//.Events(events => events.ContentLoad("showTooltip"))
)I figured it out. I change to the tag helper and used the content-handler property. I assume that is the same as the html helper.
