in the ModelLocator (singleton according to Cairngrom) I do create an instance of a TabNavigator:
public var tabNavEngTypeDet:TabNavigator = new TabNavigator();
public var tabNavEngDet:TabNavigator = new TabNavigator();
In my index.mxml I do have in the function init:
[Bindable]
public var model : ModelLocator = ModelLocator.getInstance();
private function init():void{
this.tabNavEngDet = model.tabNavEngDet;
this.tabNavEngTypeDet = model.tabNavEngTypeDet;
(...)
in the mxml part I do have:
<mx:TabNavigator id="tabNavEngTypeDet" height="100%" width="100%" />
onResult in the Command (according to Cairngorm) I do have
var newTab3:tabServiceProducts = new tabServiceProducts();
newTab3.tabEditable = rItem.Editable;
newTab3.tabVisible = rItem.Visible;
newTab3.label = rItem.TabLabel;
newTab3.name = rItem.TabType;
model.tabNavEngDet.addChild(newTab3 as DisplayObject);
=> nothing displayed. I've tried as well to add my newTab as UIComponent. Still nothing displayed... A hint could be that the newTab is available, but as rawChild.
Now I'm wondering if I'm missing something when executing addChild, or if the whole setup is wrong...
I'm aware that you may request additional code, I've tried to be as precise as possible.
Thanks, already in advance, Werner