如果要在jqGrid中显示图像的工具提示?
答案 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}