ext 横向方俩个js页面问题
Ext.onReady(function() {
var model = Ext.create('Ext.form.Panel',{
region : 'center',
autoScroll : true,// 滚动条
border : false,
items : [ {
border : false,
layout: 'anchor',
anchor: '100%',
bodyStyle : 'padding:5px 5px 5px 5px',
items : [ maimaitongWelcome ]
}, {
border : false,
layout: 'anchor',
anchor: '100%',
bodyStyle : 'padding:5px 5px 5px 5px',
items : [ noticeList,productList ]
}]
});
Ext.create('Ext.container.Viewport',{
layout : 'border',
items : [ model ]
});
});
noticeList,productList 分别是另外俩个js页面中定义的,提示productList 未定义