header
ask question
Click here to ask Question Now Its free No registration required. Flash, Flex, Flash Media Server, ActionScript,Adobe Air. Most questions receive a response in an hour.
Rama
Points:0
Posts:0

5/28/2010 7:22:24 PM

Title: CheckBox Item Renderer


Hi,

I have a popupbutton, popupButton inside checkbox itemrenderer. I get the data from the database, So i want to select the check boxes one, more and All, How to do it?
Please help me?


Thanks



1
Quillian
Points: 0
Posts:0
5/28/2010 9:16:53 PM



check this example in actionscript 3.0 and flex to populate a popupbutton in flex with xml as data provider. You can add any control like checkbox to popupButton. See this source code. The data coming from your database should be in same format as its in the xml :



<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
	<mx:XML id="xmlDataprovider">
		<root>
			<node label="type=check" id="ch" type="check" toggled="true" />
			<node label="type=check" id="ch1" type="check" toggled="true" />
			<node label="type=check" id="ch2" type="check" toggled="true" />
			<node label="type=check" id="ch3" type="check" toggled="true" />
		</root>
	</mx:XML>
	<mx:Script>
		<![CDATA[
			import mx.controls.Menu;
			private var menu:Menu;
			private function init():void {
				menu = new Menu();
				menu.labelField = "@label";
				menu.dataProvider = xmlDataprovider;
				menu.showRoot = false;
				menu.width = popUpButton.width;
				popUpButton.popUp = menu;
			}
		]]>
	</mx:Script>
	<mx:PopUpButton id="popUpButton" label="Select Item" width="200" creationComplete="init();" />
</mx:Application>


2
Moxi
Points: 0
Posts:0
5/29/2010 4:48:56 AM



you cannot select multiple checkbox at a time in the popup button. Because it closes as soon as you click on a single checkbox. you need to again click to open and select another checkbox.


Post your Reply
Name  

Email

Type your Reply or Answer

Are you human? What is 1+1 



Members Login

Email  
Password
Forgot Password





This website focus on: Flash | Flex | FMS | RED5 | WOWZA | Flash Media Server | Adobe AIR | ActionScript,Flash Solutions | Flash Question | Flash Answers | Flash Developers | Flash Problem, Flash Help, Flash bugs, Flash workaround | Flash Blog | Flex Question Answers | Flash Forum | Flex Development | Actionscript development | Flash development | Adobe AIR development
Copyright © 2008 AskMeFlash.com. All rights reserved. Privacy Policy | Terms & Conditions