1. #1
    Sencha User
    Join Date
    Mar 2012
    Posts
    18
    Vote Rating
    0
    Answers
    1
    heppi75 is on a distinguished road

      0  

    Default Unanswered: problems after upgrading sdk

    Unanswered: problems after upgrading sdk


    hi,

    I have a curious problem after upgrading the sdk. with the sdk 2.0.0 everything works fine. when I upgrade with the command line tools to the new 2.0.1.1 the application is working but the Viewport on the bottom of the page are ignored - only the home icon is present?

    very confusing - with 2.0.0 all is fine - I can see the three icons on the bottom nav. after upgrading to the new one only the home icon is present - is there anything to clear like any caches or something like that - or could the Viewport not be used in the newer versions? please help ...

    Code:
    Ext.define('MyApp.view.Viewport', {
    	extend: 'Ext.TabPanel',
    	xtype: 'mainPanel',
    	
    	config: {
    		fullscreen: true,
    		tabBarPosition: 'bottom',
    
    
    		items: [
    			{
    				xtype: 'homePanel',
    			},
    			{
    				xtype: 'accommodationsPanel'
    			},
    			{
    				xtype: 'activitiesPanel'
    			}
    		]
    	}
    });

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,581
    Vote Rating
    433
    Answers
    3100
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Any errors?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    Mar 2012
    Posts
    18
    Vote Rating
    0
    Answers
    1
    heppi75 is on a distinguished road

      0  

    Default


    no errors - nothing ...

  4. #4
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,581
    Vote Rating
    433
    Answers
    3100
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Are the classes loaded? I notice that class you aren't using requires to require the classes like you really should be
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  5. #5
    Sencha User
    Join Date
    Mar 2012
    Posts
    18
    Vote Rating
    0
    Answers
    1
    heppi75 is on a distinguished road

      0  

    Default


    I am not sure what you mean exactly - if there are classes that should be loaded or arn't loaded there must be something in the log of firebug - correct? I have no messages or errors ...