Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I don't understand why I don't see my list in tab3...

enter image description here This is my code... I add one record in myStore but I don't see the list...

Thanks in advance!

    var mainForm ;
var mainFormPanel={};
var addToXml=function (values){};
var htmlTemplate='<p>{b}</p><p>{m}</p><p>{f}</p>';
var template = new Ext.Template(htmlTemplate);


var myStore = Ext.create('Ext.data.Store', {
    storeId: 'MyStore',
    fields: [
             {name: 'id', type: 'string'},
             {name: 'c', type: 'string'},
             {name: 'd', type: 'string'},
             {name: 'q', type: 'string'},
             {name: 'n', type: 'string'}
             ]
}); // create()
myStore.add({id:"id",c:"222",d:"333",q:"444",n:"555"});

var listpanel;

var config={
        glossOnIcon: false,
        autoMaximize: false,
        icon: {
            57: 'lib/sencha-touch/resources/icons/icon.png',
            72: 'lib/sencha-touch/resources/icons/icon@72.png',
            114: 'lib/sencha-touch/resources/icons/icon@2x.png',
            144: 'lib/sencha-touch/resources/icons/icon@114.png'
        },
        phoneStartupScreen: 'lib/sencha-touch/resources/loading/Homescreen.jpg',
        tabletStartupScreen: 'lib/sencha-touch/resources/loading/Homescreen~ipad.jpg',

        //next we require any components we are using in our application.
        requires: [
                   'Ext.tab.Panel',
                   'Ext.form.*',
                   'Ext.field.*',
                   'Ext.Button',
                   'Ext.data.Store'
                   ],

                   launch: function() {            
                       var list= Ext.create("Ext.NavigationView",{
                               xtype: 'list',
                               itemTpl: 'D:{id} - C:{c}',
                               store: myStore,
                               fullscreen: true,
                               layout:'fit',
                               title:'listtitle',
                               onItemDisclosure: function (record, btn, index) {
                                   view.push({
                                       xtype: 'panel',
                                       renderTo: document.body,
                                       layout:'fit',
                                       title: 'second view',
                                       html: 'second view',
                                       styleHtmlContent: true
                                   });
                               }
                       });


                       var myTitle= {
                                       xtype: 'titlebar',
                                       id: 'myTitle',
                                       docked: 'top',
                                       title: 'mytitle'//,
                                    };
                       var myMean={ 
                                       xtype: 'titlebar',
                                       id: 'myMean',
                                       docked: 'bottom',
                                       title: 'myMean'
                                   };


                       listpanel = new Ext.Panel({
                           xtype:'panel',
                           header:true,
                           layout: 'fit',   // important to make layout as 'fit'
                           id:'listpanel',
                           title:'listpanel',
                           items: [myTitle,myMean,list]
                       });


                        var view = Ext.create("Ext.NavigationView", {
                           layout:'fit',
                           id:'view',
                           items: [listpanel]
                       });

                       Ext.Viewport.add({
                           xtype: 'tabpanel',
                           tabBarPosition: 'bottom',
                           items: [
                                   {
                                       title: '1-tab',
                                       layout:'fit',
                                       iconCls: 'home',
                                       html:'tab1',
                                        cls: 'card1'

                                   },
                                   {
                                       title: '2-tab',
                                       layout:'fit',
                                       iconCls: 'download',
                                       html:'tab2',
                                       cls: 'card2'
                                   },
                                   {
                                       title: '3-tab',
                                       layout:'fit',
                                       iconCls: 'home',
                                       items: [view],
                                       cls: 'card3'
                                   },
                                   {
                                       title: '4-tabs',
                                       layout:'fit',
                                       iconCls: 'home',
                                       html: '4-tab',
                                       cls: 'card4'
                                   }
                                   ]
                       });
        }
};
Ext.application(config);
share|improve this question
Error on console log? – bomslang May 2 '12 at 11:46
no errors :(... – michele May 2 '12 at 11:52

2 Answers

up vote 1 down vote accepted

Solved deleting fullscreen: true,layout:'fit' in var list.

share|improve this answer

have you tried setting flex: 1, layout: 'vbox' instead of layout: 'fit'?

share|improve this answer
don't work........ – michele May 2 '12 at 11:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.