I am not able to render any custom components using item fashion for example the following simple custom component class. Is this a bug.
Code:
Ext.define('App.view.markets.MyDataView', { extend: 'Ext.Panel',
xtype:'mypanel',
html:'this is html'
});
Ext.create('App.view.markets.MyDataView',{
html:'jaksgdkjahdkjahdkhaskjh'
});
in the parent class how else can I create and render out this component I know of only item[{xtype:'mypanel'},{},{}]
thanks - I have now tried a few different classes copied straigt from your docs and these also do not show. However any EXT classes DO work in the same way. Just my custom ones dont. And no errors.