I'm using Knockout-Kendo bindings.
I need to use DropDownList with Tooltip, but using both bindings in one control doesn't work. Anyone knows why and how to fix it?
var ViewModel = function()
{
this.choices = ko.observableArray(["apple", "orange", "banana"]);
this.selectedChoice = ko.observable();
this.tipText = "I am a tooltip!";
};
ko.applyBindings(new ViewModel());
<input
data-bind="kendoDropDownList: { data: choices, value: selectedChoice },
kendoTooltip: { content: tipText }" />