popupkendo.ui.Popup
Contains the Kendo UI Popup instance which manages the showing and hiding of the tooltips at the appropriate position. The popup field can be used to apply custom CSS classes and styles, or any other attributes to the element or wrapper settings of the Popup.
Example
<span id="target" title="Tooltip content">Some content</span>
<script>
$("#target").kendoTooltip({
show: function(e) {
// Access the popup instance
var popup = this.popup;
console.log("Tooltip popup instance:", popup);
// Apply custom CSS class to popup wrapper
popup.wrapper.addClass("custom-tooltip");
}
});
</script>
In this article