用ExtJS在chrome中报错:Uncaught TypeError: undefined is not a function

/**Ext.selection.RowModel行选择模式*/Ext.onReady(function(){vardatas=[[100,'张三',26],[200,'... /**Ext.selection.RowModel 行选择模式*/
Ext.onReady(function(){
var datas = [
[100,'张三',26],
[200,'李四',20],
[300,'王五',30]
];
var grid = Ext.create('Ext.grid.Panel',{
title : '行选择模式示例',
renderTo : Ext.getBody(),
width : 300,
height : 150,
frame : true,
simpleSelect : true, //启用简单选择模式
multiSelect :true, //支持多选
selType : 'rowmodel', //设置单元格选择模式Ext.selection.RowModel
tbar : [{
text : '取得所选行',
handler : function(){
var msg = "";
var rows = grid.getSelectionModel().getSelection();
for(var i = 0;i < rows.length;i++){
msg = msg + rows[i].get('name') + '\n';
}
alert(msg);
}
}],
store : {
fields : ['id','name','age'],
proxy : {
type : 'memory',
data : datas,
reader : 'array'
}
},
autoLoad : true,

columns :[
{header : 'id',dataIndex : 'id',sortable : true},
{header : '姓名',dataIndex : 'name',sortable : true},
{header : '年龄',dataIndex : 'age',sortable : true}
]

});

});
是用Ext4
展开
 我来答
小雯傻猪
2014-11-26 · 超过54用户采纳过TA的回答
知道答主
回答量:121
采纳率:0%
帮助的人:100万
展开全部
autoLoad : true, //放到store里面
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式