extjs2.0 在Ext.grid.EditorGridPanel中的toolbar添加下拉框,出现xtype:combo 的store参数错误问题
拉唯达 2015-08-19 04:23:11
代码:1
var grid = new Ext.grid.EditorGridPanel({
id:"grid",
renderTo : "grid",
//title : "工作量录入",
height : 500,
width : 1100,
cm : colM,
store : store,
items:[tb3],
tbar:[{},{
xtype : 'combo'
},{
}],
autoExpandColumn : 5,
clicksToEdit : 2
});
代码2;
var tb3 = new Ext.Toolbar({
items: ['期间',
{
xtype : 'combo',
//mode : 'local',
editable : false
}]
});
这两种出现上面图片那种提示,给出store也不行