开发者

HOw to show the tooltip for an image in the jqGrid?

HO开发者_如何转开发w to show the tooltip for an image in the jqGrid?


Did you check this >>> Custom Data ToolTips for jqGrid


you can use qtip plugin of jquery for this. in my case i have to show tool tip when particular jqgrid cell get focused.

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'
        }
    }
    });
}

you can visit following link to find out more about qtip plugin http://craigsworks.com/projects/qtip/

whereas i have to set following column properties in jqgrid in colmodel

editoptions: { size: 7, defaultValue: '0.00000', maxlength: 15, dataInit: LoadToolTipRackId} 
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜