1

我是sencha touch2的新手。我想在想要的显示列表中显示下面的一些文本标签。所以我定义了一些标签并访问 twitter 服务它将给出数据列表。下面是我的代码。

  1. 在这段代码中,如果我评论了extend:'Ext.form.Panel',如果我使用了extend:'Ext.navigation.View',那么列表数据将显示但不会显示定义的标签。
  2. 如果我评论扩展:'Ext.navigation.View',如果我使用扩展:'Ext.form.Panel',则列表数据不会显示,但会显示定义的标签。

请告诉我我的代码有什么问题:

代码:

Ext.define("E:\SenchaTouch.view.Main", {
  extend: 'Ext.form.Panel',
  //extend: 'Ext.navigation.View',
  xtype: 'companyprofilepage',
  id: 'companyprofile',
  config: { 
    items: [
    { 
      xtype: 'toolbar',
      docked: 'top',
      title: 'My Toolbar'
    },
    { 
      xtype: 'titlebar',
      title: 'Title name'
    },
    {
      margin: '10',
      xtype: 'label',
      html: 'Info1'
    },
    { 
      margin: '10',
      xtype: 'label',
      html: 'A company is a business organization. It is an association or collection of individual real '
    }, 
    {
      xtype: 'list',
      itemTpl: '{title}', 
      store: {
        autoLoad: true,
        fields: ['from_user', 'text', 'profile_image_url'],
        proxy: {
          type: 'jsonp',
          url: 'http://search.twitter.com/search.json?q=Sencha Touch',
          reader: {
            type: 'json',
            root: 'results'
          }
        }
      },
      itemTpl: '<img src="{profile_image_url}" /><h2>{from_user}</h2><p>{text}</p>'
    }] 
  }
});
4

2 回答 2

1

只有创建 Ext.Panel({}) 并在这些 Panel 中放置其他 Sencha 元素。我希望能帮助你。:)

于 2012-05-16T21:29:12.360 回答
0

原因是navigationview并且panel设置了这个配置:layout: 'card'默认情况下。

要将所有组件显示在单个页面上,请扩展Ext.Container并添加layout: 'vbox'到其配置中。

希望能帮助到你。

于 2012-05-16T08:26:08.243 回答