您好StackOverFlow社区,
好吧,也许是我忘了读的理论,但我不明白为什么下面这段代码没有给我任何东西。 (我已经在论坛中尝试了另一个答案,比如配置高度手册和布局合适的工作,但是这些布局我不能做我想做的事。)
代码:
Ext.define('myMoney.view.Settings',{
extend: 'Ext.Panel', //--> Ext.Container don't work either
fullscreen: true,
xtype: 'configuracion',
config: {
title: 'Configuracion',
iconCls: 'settings',
scrollable: true,
styleHtmlContent: true,
layout: {
type: 'vbox',
align: 'middle'
},
defaults: {
width: '50%',
height: '50%',
flex:1,
},
items: [
{
xtype: 'list',
itemTpl: '{item}',
data: [
{item: 'Cuentas Actuales'},
{item: 'Agregar nueva Cuenta'},
]
},
]
}
});
真正的代码在列表前面有两个'fieldset',但我不想让你们显示代码太久。所以,谁知道会发生什么?
答案 0 :(得分:0)
通常由布局:'适合'设置修复。您可以将其添加到外部字段集配置。