Hi,
Just had a little question about the way Architect works.....if I am using a custom component like the OptimizedTab, which work by declaring it's items like this (when not using Architect but by coding manually):
Code:
Ext.define('MyApp.view.Tabpanel', {
extend : 'Ext.tab.Panel',
xtype : 'tctabpanel',
requires : [
'Ext.TitleBar',
'Ext.Video',
'Ux.tab.OptimizedTab',
'MyApp.view.wall.Wall'
],
config: {
tabBarPosition : 'bottom',
defaultType : 'optimized-tab',
items : [
{
title: 'Welcome',
iconCls: 'home',
styleHtmlContent: true,
scrollable: true,
html: [
"Welcome to blah blah blah.",
"Blah blah blah."
].join("")
},
{
title: 'Wall',
iconCls: 'wall',
items: [
{
xtype: 'wall'
}
]
},
etc more items below
Note that the tabpanel has an items field....then 'items' again before the xtype of wall.
This is the only way the OptmizedTab component works. If I try the same in Architect, it doesn't seem possible to include the xtype of wall inside another 'items' bit. When I inspect the code I just get items then xtype.
Is this something that is possible in Architect, or should I be waiting for another update that has better support for ux's?
Thanks