0

名前.SSN、役割、および電子メールアドレスが保存されているjqgridがあります。この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 に答える