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.

Initially in MainTabbarView i have set tab-bar docked bottom. in controller based on orientations i have set tab-bar docked positions, those conditions i have given in below controller code. tab-bar and its items are coming fine during portrait orientation, in landscape orientation tab-bar is coming at right it is nice but tab-bar item are coming horizontal and also not able to see the icons of the items(See in below attached image within red box). i need to show these tab bar items in vertical order in landscape orientation. below i have given view code, controller code, styles and images. Tell me how to achieve this one.

**View Code:**
Ext.define("SLS.BRND.WEB.view.MainTabbarView", {
    extend: 'Ext.tab.Panel',
    xtype: 'MainTabbarView',
    id:'mainTabbarprofile',
    config: {  
        tabBar: {
            docked: 'bottom',
            width: '5em',            
            layout: {
                        pack: 'center',
                        align: 'center'
                    }
        },
        items: [            
            {
                xclass: 'SLS.BRND.WEB.view.View1'
            },
            {
                xclass: 'SLS.BRND.WEB.view.View2'               
            }, 
            {
                xclass: 'SLS.BRND.WEB.view.View3'
            },
            {
                xclass: 'SLS.BRND.WEB.view.View4'               
            } 
          ]
    }
});

Controller Code:

Ext.define("SLS.BRND.WEB.controller.ApartmentController", {
    extend: "Ext.app.Controller",
    requires: ['Ext.data.proxy.JsonP'],
    config: {
        refs: {
            mainTabbarView: "MainTabbarView",          
            viewport: 'viewport'
        },
    control: {           
            viewport: {
                orientationchange: 'handleOrientationChange'
            }
        },
    handleOrientationChange: function (viewport, orientation, width, height) {
        var realOrientation = Ext.Viewport.determineOrientation();        
        var tabbarPosition = Ext.getCmp('mainTabbarprofile');      
        if (realOrientation == 'portrait') {            
            tabbarPosition.setTabBar({ docked: 'bottom',
                width: '5em'
            });
        }
        else if (realOrientation == 'landscape') {           
            tabbarPosition.setTabBar({ docked: 'right',
                width: '5em'
            });
        }
    }
});

styles:

![.x-tabbar.x-docked-bottom .x-tab .x-button-icon {
    -webkit-mask-size: 9em;
    width: 5em;
    height: 6em;
    position: relative;
}
.x-tabbar.x-docked-bottom {
    height: 5em;
}
.x-tabbar.x-docked-right .x-tab {
  color: whiteSmoke;
  text-shadow: black 0.1em 0.1em;
  width: 1.2em; 
  height: 2em;
  background-image: -webkit-linear-gradient(#ffe6b7, ffefd0 20%, #fff8ea);
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.3) -0.1em -0.1em 0.2em;
}
.x-tabbar.x-docked-right .x-tab-active {
  background-image: -webkit-linear-gradient(#fff8ea, #ffefd0 20%, #ffe6b7);
  color: white!important;
  text-shadow: none !important;
}][1]

Landscape Mode Image portrait Mode Image

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.