jquery 添加列

{field:'action',title:'操作',width:70,align:'center'
formatter:function(value,row,index){ 
if (row.editing){ 
var s = '<a href="#" onclick="saverow('+index+')">保存</a> '
var c = '<a href="#" onclick="cancelrow('+index+')">取消</a>'
return s+c; 
else 
var e = '<a href="#" onclick="editrow('+index+')">编辑</a> '
var d = '<a href="#" onclick="deleterow('+index+')">删除</a>'
return e+d; 
上一篇:java笔记--BigDecimal的使用


下一篇:【Java并发编程】从源码分析几道必问线程池的面试题?