Hybrid View

    Looks like we cannot reproduce this. Please provide another test case to reproduce this issue.
  1. #1
    Sencha User
    Join Date
    Aug 2011
    Posts
    39
    Vote Rating
    4
    MattUCG is on a distinguished road

      0  

    Default tabBarPosition problem

    tabBarPosition problem


    I am using a TabPanel with two tabs. If either of the tabs extends Ext.List or contains any child items, the tabs will no longer dock at the bottom. Uncommenting the one commented line will demonstrate the issue.

    Code:
    Ext.define('ArticleList', {
        extend: 'Ext.Panel',
    
        config: {
            title: 'DEFAULT',
            html: 'test',
            //items: [ {html: 'item1'}, {html: 'item2'} ]
        },
    });
    
    var recentArticleList = Ext.create('ArticleList', {iconCls: 'time', title: 'Recent'});
    var toolsArticleList = Ext.create('ArticleList', {iconCls: 'settings', title: 'Tools'});
    
    Ext.application({
        name: 'Sencha',
    
        launch: function () {
            this.tabPanel = Ext.create("Ext.TabPanel", {
                fullscreen: true,
                tabBarPosition: 'bottom',
            });
    
            this.tabPanel.add(recentArticleList);
            this.tabPanel.add(toolsArticleList);
        }
    });

  2. #2
    Sencha - Sencha Touch Dev Team
    Join Date
    Mar 2007
    Location
    Haarlem, Netherlands
    Posts
    1,235
    Vote Rating
    4
    TommyMaintz will become famous soon enough

      0  

    Default


    We will investigate this issue. I've opened a ticket for it.

Tags for this Thread