繁体   English   中英

Sencha Touch 2:在选项卡面板中创建嵌套列表

[英]Sencha Touch 2: Creating a Nested List inside a tab panel

我现在已经尝试了千种不同的方式来完成此操作,Sencha Touch文档尚不清楚或没有帮助,而且每个人似乎都以不同的方式来做...但没有一个对我有用。

我设法通过以下方式使List视图工作:

Ext.define("MyApp_eComm.view.Products", {
extend: 'Ext.navigation.View', //Needs to be navigation view to display the     ProductList.js
xtype: 'products',

requires: [
    'Ext.dataview.List',
    'MyApp.view.ProductList',
    'MyApp_eComm.view.ProductDetail'
],

config: {
    title: sMY_CONST_TAB_BROWSE_TITLE,
    iconCls: sMY_CONST_TAB_BROWSE_CLASS,

    styleHtmlContent: true,
    scrollable: true,

    items: [ 
        /*{
            xtype: 'titlebar',
            docked: 'top',
            title: sMY_CONST_TAB_BROWSE_SUBTITLE
        },*/
        {
            xtype: 'productlist',
            title: sMY_CONST_TAB_BROWSE_SUBTITLE
        }
    ]
}  
})

这是我的列表视图,位于导航视图的内部……在选项卡面板的内部。 我之所以使用导航视图,是因为我可以从披露组件顶部推一个产品详细信息视图。

Ext.define("MyApp.view.ProductList", {
extend: 'Ext.List',
xtype: 'productlist',

requires: [
    'MyApp.store.ProductStore'
],

config: {
    itemTpl: '{text}', 
    store: 'ProductStore',
    onItemDisclosure: true 
}
}); 

这是我的模型:

Ext.define('MyApp.model.ProductListModel', {
extend: 'Ext.data.Model', 

config: {
    fields: ['text']
}
}); 

最后,这是我的商店,里面有测试数据,目前还没有嵌套:

Ext.define('MyApp.store.ProductStore', {
extend: 'Ext.data.Store',

config: {
    model: 'MyApp.model.ProductListModel',
    sorters: 'text',
    data: [
        {
            text: 'Burgers',
        },
        {
            text: 'Pasta',
        },
        {
            text: 'Sausages',
        },
        {
            text: 'Cabbage',
        },
        {
            text: 'Lettuce',
        },
        {
            text: 'Marmalade',
        },
        {
            text: 'Honey',
        },
        {
            text: 'Yogurt',
        },
        {
            text: 'Cheese',
        },
        {
            text: 'Milk',
        },
        {
            text: 'Bread',
        },
        {
            text: 'Butter',
        },
        {
            text: 'Goats Milk',
        },
        {
            text: 'Apple',
        },
        {
            text: 'Oranges',
        },
        {
            text: 'Bananas',
        },
        {
            text: 'Jelly',
        },
        {
            text: 'Spagetti Hoops',
        },
        {
            text: 'Ravioli',
        },
        {
            text: 'Wheatabix',
        },
        {
            text: 'Cornflakes',
        },              

    ]
}
});

尝试添加

config: {
  title: sMY_CONST_TAB_BROWSE_TITLE,
  iconCls: sMY_CONST_TAB_BROWSE_CLASS,

  styleHtmlContent: true,
  scrollable: true,

  items: 
    {
        xtype: 'productlist',
        title: sMY_CONST_TAB_BROWSE_SUBTITLE
    }

}  

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM