extjs gridpanel 显示不了数据 代码如下 15
varcolumnModel=newExt.grid.ColumnModel([{header:'PID',dataIndex:'PID',width:80},{head...
var columnModel = new Ext.grid.ColumnModel([ {
header : 'PID',
dataIndex : 'PID',
width : 80
}, {
header : '进程名称',
dataIndex : 'name',
width : 80
}, {
header : '用户名',
dataIndex : 'userName',
width : 80
}, {
header : 'CPU使用率',
dataIndex : 'cpuPercent',
width : 80
}, {
header : 'CPU开始时间',
dataIndex : 'cpuStartTime',
width : 80
}, {
header : '工作内存',
dataIndex : 'workMemory',
width : 80
}
]);
/* var gridData = [ {
'no' : '1',
'name' : 'google',
'pid' : '520'
} ]; */
var gridStore = new Ext.data.JsonStore({
proxy : new Ext.data.HttpProxy({
root: "appInfoes",
url : '<%=searchUrl%>'
}),
reader : new Ext.data.JsonReader({
fields : [ {
name : 'PID',
mapping : 'PID'
}, {
name : 'name',
mapping : 'name'
}, {
name : 'userName',
mapping : 'userName'
}, {
name : 'cpuPercent',
mapping : 'cpuPercent'
}, {
name : 'cpuStartTime',
mapping : 'cpuStartTime'
}, {
name : 'workMemory',
mapping : 'workMemory'
} ]
})
});
gridStore.load();
var grid = new Ext.grid.GridPanel({
title : '监控',
renderTo : "divGrid",
cm : columnModel,
stripeRows : true,
height : 227,
store : gridStore
}); 展开
header : 'PID',
dataIndex : 'PID',
width : 80
}, {
header : '进程名称',
dataIndex : 'name',
width : 80
}, {
header : '用户名',
dataIndex : 'userName',
width : 80
}, {
header : 'CPU使用率',
dataIndex : 'cpuPercent',
width : 80
}, {
header : 'CPU开始时间',
dataIndex : 'cpuStartTime',
width : 80
}, {
header : '工作内存',
dataIndex : 'workMemory',
width : 80
}
]);
/* var gridData = [ {
'no' : '1',
'name' : 'google',
'pid' : '520'
} ]; */
var gridStore = new Ext.data.JsonStore({
proxy : new Ext.data.HttpProxy({
root: "appInfoes",
url : '<%=searchUrl%>'
}),
reader : new Ext.data.JsonReader({
fields : [ {
name : 'PID',
mapping : 'PID'
}, {
name : 'name',
mapping : 'name'
}, {
name : 'userName',
mapping : 'userName'
}, {
name : 'cpuPercent',
mapping : 'cpuPercent'
}, {
name : 'cpuStartTime',
mapping : 'cpuStartTime'
}, {
name : 'workMemory',
mapping : 'workMemory'
} ]
})
});
gridStore.load();
var grid = new Ext.grid.GridPanel({
title : '监控',
renderTo : "divGrid",
cm : columnModel,
stripeRows : true,
height : 227,
store : gridStore
}); 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询