1

悬停单元格后,是否有更有效的方法来显示工具提示?使用结构属性来格式化数据网格,有没有办法使用格式化程序来显示 dijit 工具提示,而不是使用 html 标题属性。

这是显示工具提示的列。

    var subscriberGridLayout = [        
       {    
            name: " ",
            field: "ExpirationDate",
            formatter: function(value){
                if(value){
                    expDate = formatDateIE(value);
                    return toolTip();
                }
                else
                    return " ";
            },
            styles: "text-align: center;",
            width: "30px"
        },

这是通过图像标签显示工具提示图标的函数,但不是 dijit 工具提示,它只是使用 html 的标题来显示弹出窗口。

    function toolTip(){
        src = "'/Subscriber/resources/images/icons/icon_error.gif'/>";
        if(dojo.date.difference(today, expDate) <= 0 ){
            message = "Credential expired.";
            return "<img title='"+ message + "' src=" + src + "";
        } else if(dojo.date.difference(today, expDate) <= 60) {
            message = "This Subscriber will expire in " + dojo.date.difference(today, expDate) + " days."
                        + "&#10; &#10;To prevent an interruption in the Subscriber&rsquo;s access, please sumbit a request to " + 
                            "renew the Subscriber within 30 days of the expiration date.";
            return "<img title='"+ message + "' src=" + src + "";
        } else {
            return " ";
        }

    }
4

1 回答 1

4

我会做类似的事情:

new Tooltip({
    connectId: grid.domNode,
    selector: "td",
    getContent: function(matchedNode){
        return matchedNode.innerText
    }
});

有了grid.domNode你可以得到你的小部件生成的 DOM。网格生成表格结构,因此您可以使用selectorgetContent属性获取单元格。

我必须说这并不是真正正确的方法,因为现在您正在使用 Dojo 小部件的内部结构。如果他们曾经决定不使用表格作为 DOM 结构,那么您的代码将无法工作。

但我认为没有更好的方法来实现这一点,最终您将始终必须将 Dojo 单元转换为 DOM 节点(因为工具提示是基于 DOM 的)。您当然可以将工具提示连接到每个单元格,但我之前尝试过,但它有点错误(有时工具提示没有弹出)。

我还制作了一个JSFiddle来向您展示一个工作示例。

于 2013-05-02T21:47:08.767 回答