dwr 调用返回一组数据,其中包含任意数量的特定列。例如姓名、身份证、地址。地址可以是 1,2 或 3,例如第一条记录的地址 1、地址 2 和第二条数据的地址 1、地址 2、地址 3。我的问题是如何使 jqgrid 的列名动态化。
DataHandler.fetch(function(data){
resultSet = data;
jQuery("#table1").jqGrid({
datatype : "local",
data : resultSet,
height : 250,
width : 978,
sortable : false,
ignoreCase : true,
sortorder : "desc",
colNames : ['Email Date/Time','User Name', 'Department'] //want to make this dynamic
colModel : [ {
name : 'mailedOn',
index : 'mailedOn',
width : '18%',
align : 'center',
}, {
name : 'userName',
index : 'userName',
width : '18%',
align : 'left',
sorttype : 'text',
}],
rowList:[10,20,30],
pager : '#pager',
rowNum : 10,
altRows : true,
altclass: "myclass",
viewrecords : true
});
});
有什么帮助吗??