0

我有一个 jqgrid,其中存储了名称 .SSN 、角色和电子邮件地址。现在在这个 jqgrid 的末尾,我想要一个硬编码的网格值,其中名称是通知电子邮件,电子邮件是 abc@hotmail.com

            colNames:['name','Role','SSN','EmailAddress'],
colModel:[
    {name: 'name',index: 'name',sortable:false,search:false,sorttype: 'text'},
           {name: 'role',index: 'role',sortable:false,search:false,sorttype: 'text'},
           {name: 'ssN',index: 'ssN',sortable:false,search:false,sorttype: 'text'},
           {name: 'emailAddress',index: 'emailAddress',sortable:false,search:false,sorttype: 'text'}
4

1 回答 1

0

尝试自定义格式化程序

{name: 'emailAddress',index: 'emailAddress',sortable:false,search:false,sorttype: 'text',formatter:testFormatter}

和功能

                function testFormatter ( cellvalue, options, rowObject )
                {

                return "email@mymailcompany.com";
                }
于 2013-01-22T06:16:14.730 回答