2012-01-23 56 views
0

我已經使用SENCHA呈現了一個列表。現在我想要導航到不同的屏幕/加載不同的屏幕,點擊列表中的項目。使用SENCHA導航到不同的頁面

 var templist = new Ext.List({ 
     title:"xmli", 
      itemTpl : '{ename}', 

       floating: true, 
       indexBar: true, 
       width: 350, 
       height: 370, 
       centered: true, 
       store:xmlStore, 
       modal: true, 
       onItemDisclosure: { 
       scope: 'test', 
       handler: function(record, btn, index) { 
       // I need to a load different page here how ?. 
        // ChangePage(); 
       } 
      }, 
       hideOnMaskTap: false 
      }).show(); 

請幫助我,我們如何使用SENCHA實現這一目標。

感謝, 希亞姆

回答

相關問題