是否可以在网格列的编辑选项中有超链接?网格在绑定时显示纯文本。但是当它处于编辑/添加模式时,需要将此文本转换为超链接(打开一个弹出窗口)。我找不到在编辑选项中有超链接的选项。我可以将其作为按钮进行,但我需要一个链接。有没有办法做到这一点?我有以下代码 -
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();
}
}]
}
},