Hi,
I had make a view in sencha touch 2 app
Ext.define("Myapp.view.Mynestedlist", {
extend: 'Ext.Panel',
xtype: 'mynestedlist',
config: {
html: [
Hi nested list'
].join("")
}
});
Here i want to load the html from my server through ajax. Can anyone please tell me a method how can i get dynamic html here.
