I am having trouble getting Ext.Router to register changes to the URL. I started my application with the example for model view controller on sencha touch site.

Ext.setup({
    tabletStartupScreen: 'tablet_startup.png',
    phoneStartupScreen: 'startup.png',
    icon: 'icon.png',

    onReady: function() {
       KOI.views.viewport = new KOI.views.Viewport();
    }
});

And I have a routes file, (loaded before app)

Ext.Router.draw(function(map) {
      map.connect("main", { controller: 'menu', action: 'index' });
});

This is the controller

KOI.controllers.menus = new Ext.Controller({
    index: function(options) {
        KOI.views.viewport.setActiveItem(KOI.views.mainMenu);
    }
});
Ext.regController('menu', KOI.controllers.menus);

but changing the URL to http://myapp.com/#main does nothing, although the controller does work. Any ideas what I am missing? Any help would be greatly appreciated. There isnt very much documentation for Ext.router and I cant see a good way to debug whats going on.

link|improve this question

43% accept rate
OK I figured it out, instead of Ext.setup ... Ext.regApplication({ name : "myapp", launch: function() { KOI.views.viewport = new KOI.views.Viewport({ application: this }); } }); – mconnors May 31 '11 at 4:42
feedback

1 Answer

up vote 1 down vote accepted

Ext.setup is equivalent to Ext.onReady and does nothing else but call a callback function when the dom is loaded and accessible.

Ext.regApplication however creates a new Ext.Application, passing in your config object to it.

Part of an Ext.Application is the Ext.Application.onBeforeLaunch and Ext.Application.launch. onBeforeLaunch sets up history support if you have that enabled, and then calls launch.

If launch doesn't return false then onBeforeLaunch will go ahead and call Ext.redirect with either your last history item / token, your defaultUrl or if all else fails {controller: 'application', action: 'index'}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.