我在这里有工作代码:在容器内创建两个不同的面板:
Ext.application({
requires: ['Ext.container.Viewport'],
name: 'AM',
appFolder: 'app',
controllers: [
'Users'
],
launch: function() {
Ext.create('Ext.panel.Panel', {
renderTo: Ext.getBody(),
width: 900,
height: 600,
title: 'The Panel',
layout: {
type: 'hbox'
},
items: [
{ xtype: 'panel', padding: 5, height: 500, width: '35%' },
{ xtype: 'userlist', padding: 5, height: 500, width: '65%' },
],
listeners: {
render: function() {
console.log('The Panel was rendered');
}
}
});
}
我想要做的是能够将不同的组件放在左面板内(即组合框、输入框等)。我该怎么做?创建这些组件的最佳实践是什么?(一切都应该放在 app.js 中吗?)