In Sencha Touch 2, I use this code snippet in my controller:
this.control({
'#test_button': {
tap: function () {
var root_c = Ext.getCmp("main_container");
root_c.setActiveItem(
1, {type:'slide', direction: 'left'}
);
}
}
});
It works nicely, but it switches only the "default way", not the "sliding way". Can anyone help, why?
Thanks in advance, R
