将工具提示动态添加到列的kendo网格行

时间:2012-09-20 07:50:57

标签: kendo-ui kendo-grid kendo-tooltip

我有一个列,其中有一些注释显示在行中。由于音符很大,我已经缩短了控制器本身的音符并将其发送到我的aspx页面。我想要实现的是,我希望以鼠标悬停在网格行上的工具提示的形式显示完整的注释(或者如果可能的话,准确地在单元格上)。有没有办法实现这个目标?任何帮助将受到高度赞赏。在此先感谢。

3 个答案:

答案 0 :(得分:13)

发布可能对任何人都有帮助的答案。

这样做后我就开始工作......

columns.Bound(p => p.partialNotes).Title("Description").HeaderHtmlAttributes(new { style = "text-align:center" }).HtmlAttributes(new { style = "text-align:left" }).Width("8%").HtmlAttributes(new { title =  "#= completeNotes #" });

我刚刚添加了 HtmlAttributes(new {title =“#= completeNotes#”})

所以现在当我将鼠标放在Description列数据上时,我将完整的Notes作为工具提示。

答案 1 :(得分:3)

使用第三方小部件也是可能的。我已将qtip提示添加到列标题中,例如此enter image description here

KendoUI网格列数组项

{
    field:"property",
    headerTemplate:kendo.template($("#h_Entity_property").html())
},

标题模板

<link rel="stylesheet" type="text/css" href="lib/Craga89-qTip2-bfcc9ef/dist/jquery.qtip.min.css"/>
<link rel="stylesheet" type="text/css" href="lib/Craga89-qTip2-bfcc9ef/util/qtip.util.css"/>
<script type="text/javascript" src="lib/Craga89-qTip2-bfcc9ef/dist/jquery.qtip.min.js"></script>
<script type="text/javascript" src="lib/Craga89-qTip2-bfcc9ef/util/Dialogues.js"></script>
<script type="text/javascript" src="lib/Craga89-qTip2-bfcc9ef/util/Qtip2Util.js"></script>

<script type="text/x-kendo-template" id="h_Entity_property">
    Property
    <img onclick="Qtip.local(this, 'i_Entity_property')" src="img/info.gif"/>
    <div id="i_Entity_property" style="display:none;">
        Elaborate a bit...
    </div>
</script>

工具提示生成器

var Qtip = {
    local:function (element, contentId) {
        $(element).qtip($.extend({}, qTipSharedOptions, {
                content:{
                    text:$('#' + contentId).html(),
                    title:{
                        text:' ',
                        button:true
                    }
                }
            }
        ));
    },
    ...
};

var qTipSharedOptions = {
    position:{
        at:'top right', // Position the tooltip above the link
        my:'bottom left',
        viewport:$(window), // Keep the tooltip on-screen at all times
        effect:false // Disable positioning animation
    },
    style:{
        classes:'ui-tooltip-tipsy ui-tooltip-shadow'
    },
    show:{
        ready:true,
        event:false,
        solo:true // Only show one tooltip at a time
    },
    hide:false
};

答案 2 :(得分:0)

您可以执行以下操作:

$("#Kendo-grid-div-id").kendoTooltip({
    filter: "td:nth-child(2),td:nth-child(3)", //comma separated multiple columns
    position: "bottom",     //possible values: bottom,top,left,right,center
    content: function(e){
      var content = e.target.html();
      return content;
    }
  }).data("kendoTooltip");