列表视图未在面板中显示

时间:2013-04-15 18:45:31

标签: extjs sencha-touch

更新: 我发现是否这样做

this.add([topToolbar, {
        xtype: "fieldset",
        items: [showNameEditor, textEditor]
    },
    showsList, bottomToolbar
]);

layout: {
    type: 'fit'
}

然后列表显示但文本字段不显示

原件:

我正在尝试获取一个列表,在我的面板中显示两个textFields显示,但列表不会出现。我在列表中尝试了不同的商店,但仍未显示。

var showNameEditor = {
    xtype: 'textfield',
    name: 'name',
    label: 'Name',
    required: true
};
var textEditor = {
    xtype: 'textfield',
    name: 'name',
    label: 'Name',
    required: true
};
var showsList = {
    xtype: 'list',
    title: 'Sample',
    itemTpl: '{title}',
    data: [{
            title: 'Item 1'
        }, {
            title: 'Item 2'
        }, {
            title: 'Item 3'
        }, {
            title: 'Item 4'
        }
    ]
};

this.add([topToolbar, {
        xtype: "fieldset",
        items: [showNameEditor, showsList, textEditor]
    },
    bottomToolbar
]);

1 个答案:

答案 0 :(得分:1)

您必须指定fieldset&的尺寸form如果您想显示其内容,请使用width& height配置