vote up 0 vote down star

I have the below function creating new panels inside my ViewStack.. This works fine and they are great.. However i am trying to put some content into the panels but i am failing.

       private function viewstack_addChild(name:String):void {
            //if (accordion.numChildren < MAX_CHILDREN) {
                var p:Panel = new Panel();
                p.id = name;
                p.name = name;
                p.title = name;
                p.percentWidth = 100;
                p.percentHeight = 100;
                var display:PageItemRenderer = new PageItemRenderer;
                p.finishPrint(display);
                var randColor:uint = Math.random() * 0xFFFFFF;
                p.setStyle("backgroundColor", randColor);
                myViewStack.addChild(p);
                //myViewStack.selectedChild = p;
            //}
        }

I have a custom itemrenderer called PageItemRenderer that will accept the xml data and display it but i cannot figure out how to call the renderer for each panel..

Any help would be greatly appreciated.

EDIT: Adding PageItemRenderer.mxml

<?xml version="1.0" encoding="utf-8"?>
<mx:HBox 
height="100%" 
width="100%" 
xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:HBox width="100%" height="100%">
	<mx:VBox height="100%" width="20%" horizontalAlign="center" verticalAlign="middle">
		<!-- software image -->
    	<mx:Image source="{data.image}"  width="90%" height="90%"/>
	</mx:VBox>

    <!-- person's name -->
    <mx:VBox height="100%" width="80%" horizontalAlign="left" verticalAlign="middle">
        <mx:Label width="100%" height="100%" text="{data.name} {data.version}" color="#FFAE00"/>
        <mx:Label width="100%" height="100%" text="{data.description}" color="#FFFFFF"/>
    </mx:VBox> 
</mx:HBox>

</mx:HBox>
flag

1 Answer

vote up 1 vote down check

The Panel is just a container class, and your PageItemRenderer must extend some UIComponent, so just do this in your viewstack_addChild method:

 var p:Panel = new Panel();
 // set the properties on p
 var pR:PageItemRenderer = new PageItemRenderer();
 var data:Object;
 // Do something to get the data to be displayed;
 pR.data = data;
 p.addChild(pR);
 myViewStack.addChild(p);

EDIT: changed pR.setData to pR.data EDIT: changed pR.data(data) to pR.data = data;

link|flag
Hi LynchRJ, thank you for the response, however i am still unsure on how to actually call the itemrenderer in there for the data variable.. – medoix Nov 7 at 2:58
I went ahead and made a correction to the code. A drop in item renderer is a UIComponent class that implements the mx.core.IDataRenderer mx.controls.listClasses.IDropInListItemRenderer . From what I understand you want to use it in a Panel instead of a List or other control. A List control creates instances of the renderer and sets the data on the element. If you want to use it outside of that context just create an instance of it, set the data on it, and add it as a child of the container element you want to put it in. – Ryan Lynch Nov 7 at 18:34
Sorry, I mean it implements the mx.core.IDataRenderer and mx.controls.listClasses.IDropInListItemRenderer interfaces. – Ryan Lynch Nov 7 at 18:35
On the following line.. var pR:PageItemRenderer = new PageItemRenderer(); I am getting.. TypeError: Error #1006: value is not a function. The PageItemRenderer is an mxml renderer file in com.xd.components.renderers – medoix Nov 7 at 21:21
Post the MXML for the PageItemRenderer class as part of your question. – Ryan Lynch Nov 7 at 21:46
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.