0

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

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();
                                        }
                                    }]
                                }
                            },
4

1 回答 1

0

可能您应该查看customedittype,您需要在其中定义自己的函数 custom_elementcustom_value构建表单元素。

http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules#edittype

于 2013-01-22T02:11:42.250 回答