是否可以在网格列的编辑选项中添加超链接?网格在绑定时显示纯文本。但是当它处于编辑/添加模式时,需要将此文本转换为超链接(打开弹出窗口)。我找不到在editoptions中有超链接的选项。我能够将其作为按钮进行,但我需要一个链接。有办法做到这一点吗?我有以下代码 -
colModel: [
{ name: 'Person', index: 'PersonName', width: 70, editable: true, edittype: 'button',
editoptions: {
value: 'Select',
dataEvents: [{
type: 'click',
fn: function (elem) {
var left = (screen.width / 2) - (700 / 2);
var top = (screen.height / 2) - (550 / 2);
var popup = window.open("popup.htm", "popup", "resizable=1,copyhistory=0,menubar=0,width=700,height=550,left='+left+',top='+top");
popup.focus();
}
}]
}
},
答案 0 :(得分:0)
您可以查看custom
编辑类型,在其中您需要定义自己的函数custom_element
和custom_value
来构建表单元素。
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules#edittype