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

时间:2012-06-26 15:37:34

标签: javascript sencha-touch-2 nested-lists

我现在试图以千种不同的方式实现这一目标,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',
        },              

    ]
}
});

1 个答案:

答案 0 :(得分:-2)

尝试添加

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
    }

}