请问在jqGrid中显示图像的工具提示?

时间:2009-12-02 04:59:36

标签: jquery-ui jquery-plugins jqgrid tooltip

如果要在jqGrid中显示图像的工具提示?

2 个答案:

答案 0 :(得分:2)

您检查了这个>>> Custom Data ToolTips for jqGrid

答案 1 :(得分:0)

你可以使用jquery的qtip插件。在我的情况下,当特定的jqgrid单元格聚焦时,我必须显示工具提示。

LoadToolTipRackId = function (elem) {

    jQuery(elem).qtip({
        content: 'this is an image',
        show: 'focusin',
        hide: 'focusout',
        style:
    {

        name: 'red',
        tip: 'leftBottom',
        textAlign: 'left',
        fontWeight: '500',
        fontSize: '11px'

    },
        position:
    {
        corner:
        {
            target: 'rightMiddle',
            tooltip: 'leftBottom'
        }
    }
    });
}

您可以访问以下链接,了解有关qtip插件的更多信息 http://craigsworks.com/projects/qtip/

而我必须在colmodel

中的jqgrid中设置以下列属性
editoptions: { size: 7, defaultValue: '0.00000', maxlength: 15, dataInit: LoadToolTipRackId}