Skip to content

Files

Latest commit

 

History

History
32 lines (25 loc) · 1.2 KB

File metadata and controls

32 lines (25 loc) · 1.2 KB
title page_title description slug canonicalLink position
Loading Content with AJAX
Loading Content with AJAX - Tooltip - Kendo UI for Vue
Load the content of the Kendo UI Tooltip wrapper for Vue over AJAX.
loading_content_ajax_tooltip_wrapper
4

Loading Content with AJAX

The Tooltip provides the built-in option for asynchronously loading content from a URL.

The URL is expected to return an HTML fragment that can be loaded in the content area of the Tooltip. If the content which is passed to the Tooltip includes scripts, the scripts are executed.

<div id="vueapp" class="vue-app">
    <kendo-tooltip id="target"
        :width="'250'"
        :height="'250'"
        :content-url="'https://demos.telerik.com/kendo-ui/content/web/tooltip/ajax/ajaxContent3.html'">
        Gorgonzola Telino
    </kendo-tooltip>
</div>

Suggested Links