I'm trying to extend the Ext.Container object within the Sencha Touch framework to add a few extra properties I need, one of which is loading a file through AJAX.
App.Ext.AContainer = Ext.extend(Ext.Container, {
ajax : false,
doAjax : function(p, that) {
Ext.Ajax.request({
url : p,
method : 'POST',
success : function(result) {
Ext.apply(that, {
html : result.responseText
})
},
failure : function(result) {
Ext.Msg.alert('ERROR : AJAX : Could not load ' + p);
}
})
},
constructor : function(b) {
if( b.ajax === true && b.hasOwnProperty('rhtml')) {
this.doAjax(b.rhtml, this);
}
App.Ext.AContainer.superclass.constructor.call(this, b);
console.log(this);
}
});
With the actual implementation of that Container being :
var servicesContainer = new App.Ext.AContainer({
scroll : 'vertical',
ajax : true,
rhtml : 'test.html'
});
Basically, my idea was have an method that takes care of loading the file and then copy it to the html property manually. When I check the console from outputting 'this', it shows that the html property is getting set with the correct markup, but it doesn't render the markup to the page.
Not really sure what I'm doing wrong.