In my Sencha Touch 2 application I need to handle redirection events on my own. By this I mean I need to be able to handle a href events and do the redirection myself.
I usually do this this way :
Ext.Viewport.element.dom.addEventListener('click', function (e) { if (e.target.tagName !== 'A') { return; }; e.preventDefault(); var href = e.target.getAttribute('href'); }, false);
Try here
Hope this helped