在jqGrid中新增、删除、编辑等操作按钮

在jqGrid中新增、删除、编辑等操作按钮,使用formatter方法!

CSS代码

colNames : [ '主键',  '客户姓名', '申请开卡'],
colModel : [ 
            {name: 'id', index: 'id', hidden:true},
            {name: 'customerName',index: 'customerName',width: win,align: "left"},
            {name: 'operate', index: 'operate',
                formatter: function (value, grid, rows, state) { 
                    return ''\');">申请开卡';
                }  
            }],

JS代码

function modify(obj){
    //obj带的是参数rows.id
    alert(obj);
}

你可能感兴趣的:(jqgrid)