Mega Code Archive

 
Categories / Flex / Container
 

Add ControlBar container dynamically to a Panel container

<!-- Code from Flex 4 Documentation "Using Adobe Flex 4". This user guide is licensed for use under the terms of the Creative Commons Attribution  Non-Commercial 3.0 License.  This License allows users to copy, distribute, and transmit the user guide for noncommercial  purposes only so long as    (1) proper attribution to Adobe is given as the owner of the user guide; and    (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms.  The best way to provide notice is to include the following link.  To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ --> <!-- containers\layouts\PanelCBarDynamicAdd.mxml --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"     xmlns:mx="library://ns.adobe.com/flex/mx"     xmlns:s="library://ns.adobe.com/flex/spark">     <fx:Script>                   import mx.containers.ControlBar;          import mx.controls.*;          import flash.events.MouseEvent;          private var myCB:ControlBar=new ControlBar();          private var myLabel:Label=new Label();          private var myNS:NumericStepper=new NumericStepper();          private var mySpacer:Spacer=new Spacer();          private var myButton:Button=new Button();          private var canAddChild:Boolean = true;          private function addCBHandler():void {              if (canAddChild) {              /* Create Controlbar control. */                  myLabel.text="Quantity";                  mySpacer.percentWidth=100;                  myButton.label="Add to Cart";                  myButton.addEventListener('click', addToCart);                  myCB.percentWidth=100;                  myCB.addChild(myLabel);                  myCB.addChild(myNS);                  myCB.addChild(mySpacer);                  myCB.addChild(myButton);                  /* Add the ControlBar as the last child of the                  Panel container.                  The ControlBar appears in the normal content area                  of the Panel container. */                  myPanel.addChildAt(myCB, myPanel.numChildren);                  /* Call createComponentsFromDescriptors() to make the                  ControlBar appear in the bottom border area                  of the Panel container. The ControlBar must be the                  last child in the Panel container. */                  myPanel.createComponentsFromDescriptors();                  /* Prevents more than one ControlBar control from being added. */                  canAddChild = false;              }          }          private function addToCart(event:MouseEvent):void {              Alert.show("ControlBar Button clicked.");          }             </fx:Script>     <mx:Panel id="myPanel" title="My Application" paddingTop="10"         paddingBottom="10" paddingLeft="10" paddingRight="10" width="300">         <mx:HBox width="100%">             <!-- Area for your catalog. -->         </mx:HBox>         <mx:Button label="Add ControlBar" click="addCBHandler();" />     </mx:Panel> </s:Application>