没有高度和宽度列表在sencha touch中没有显示

时间:2014-06-03 13:12:25

标签: cordova sencha-touch sencha-touch-2

当我提到特定的高度和宽度时,这是我的代码。

{
                        xtype: 'list',
                        itemId : 'propertyListId',
                        height : 600,
                        width : 1200,
                        store: 'PropertyListStore',
                        itemTpl: '{PropertyId}',
                        style: 'background-color: white;',

                    }

请有人建议我吗?

1 个答案:

答案 0 :(得分:0)

在您列出的外部创建面板,并设置面板布局=适合

layout: : 'fit',
items: [{
    xtype: 'list',
    itemId : 'propertyListId',
    store: 'PropertyListStore',
    itemTpl: '{PropertyId}',
    style: 'background-color: white;',
}]