我对网格单元内的 kendoui 工具提示有疑问。在网格中,我显示了一个简单的文档文件夹。每行列出一个文件。在第一列中,我有一个小预览图标和图像或文件的下载链接。如果我悬停图像,则会调用工具提示。
例子:
<a class="documents has_preview" href="<my_download_path>" title="<my_image_title>" data-url="<my_preview_image_path>">
<span class="icon preview_image image jpg has_image">
<img src="<my_preview_icon_path>" border="0" alt="" />
</span>
<my_image_name>
工具提示的插入方式如下:
<script id="template" type="text/x-kendo-template">
<img src="#=target.data('url')#" alt="#=target.data('title')#" />
<p>#=target.data('title')#</p>
</script>
$("#grid").kendoTooltip({
filter: "a.has_preview",
content: kendo.template($("#template").html()),
position: "top"
});
问题是:
如果我第一次悬停图像名称,则工具提示不会显示在指定位置。在相同图像名称的第二次悬停时,所有内容均正确显示...
谁能给我一个提示该怎么做?
非常感谢!菲利普