tabpanel sencha touch 2后的图像

时间:2013-09-18 21:55:08

标签: extjs sencha-touch tabpanel

我想在Sencha Touch 2中tabpanel之后插入图片,但它不起作用。这是我的代码:

Ext.Viewport.add({
  xtype: 'panel',
  layout: 'vbox',
  fullscreen: true,
  items: [{
    xtype: 'image',
    width: 500,
    height: 100,
    src: 'http://placekitten.com/g/500/100'
  }, {
    xtype: 'tabpanel',
    tabBarPosition: 'bottom',
    items: [{
      title: 'Nous contacter',
      iconCls: 'user',
      html: 'page2',
      items: [{
        docked: 'top',
        title: 'title',
        xtype: 'titlebar'
      }],
    }]
  }]
});

1 个答案:

答案 0 :(得分:1)

试试这个

    Ext.Viewport.add({
        xtype: 'panel',
        layout: 'vbox',
        fullscreen: true,
        items: [{
            xtype: 'image',
            width: '100%',
            height: '20%',
            src: 'http://placekitten.com/g/500/100'
        }, {
            xtype: 'tabpanel',
            tabBarPosition: 'bottom',
            height: '80%',
            items: [{
                title: 'Nous contacter',
                iconCls: 'user',
                html: 'page2',
                items: [{
                    docked: 'top',
                    title: 'title',
                    xtype: 'titlebar'
                }],
            }]
        }]
    });
相关问题