Anyone know of a way to keep the slide button at the left most position when using with a navigation view? I tried modifying the slide button add to be an insert at index 0, but that seemed to have no effect and the back button still appears first in the navigation bar.
This is my modified code:
Code:
createSlideButton: function(el, config) {
var me = this,
parent = el.down(config.selector);
if (parent) {
return parent.insert(0, Ext.merge(me.slideButtonDefaults, config));
//return parent.add(Ext.merge(me.slideButtonDefaults, config));
}
return false;
},