jqGrid使用
Posted zhaoqiang1980
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqGrid使用相关的知识,希望对你有一定的参考价值。
jqGrid:
ColModel 指定table中的td。
如果数据有特殊处理可借用formatter:
{name : ‘approveStatus‘,index : ‘APPROVE_STATUS‘, width:‘80px‘,formatter:‘select‘, formatter: createWfBtnFn},
然后在自定义的函数中对数据处理:
/**
* 配置流程按钮
*/
var createWfBtnFn = function(cellvalue, options, rowObject){
var content = ‘‘;
if(!cellvalue){
return content;
}
var optionArray = {1:‘待上报‘,2:‘审核中‘,3 :‘审核通过‘, 4:‘驳回‘};
content = optionArray[cellvalue] + "<a href=‘javascript:void(0)‘ class=‘icon-view m-r‘ onclick=‘javascript:auditWorkflowView(\"" + rowObject.id + "\")‘></a>";
return content;
}
以上是关于jqGrid使用的主要内容,如果未能解决你的问题,请参考以下文章