So working though the mostly absent docs on templates - unable to get it to work.
Ext.define( MyAPp.view.Login , {
extend: Ext.Component ,
xtype: welcomeLogin ,
config: {
html: This shows ,
tpl: Ext.create ( Ext.XTemplate , <div>Please show something</div> , {
compiled: true
})
}
});
Why does the template content now show? I have tried adding apply(), applyTemplate() on and on and on... Please help!!!