flex 체크 상자 와 드 롭 다운 목록 의 몇 가지 용법 정리
<mx:VBox top="50">
<mx:VBox>
<mx:Canvas width="100%" height="100%" >
<mx:Repeater id="rep" dataProvider="{array}">
<mx:CheckBox id="checkbox" label="{rep.currentItem.name}" x="{rep.currentItem.x}" data="{rep.currentItem.id}"/>
</mx:Repeater>
</mx:Canvas>
</mx:VBox>
<mx:VBox>
</mx:VBox>
</mx:VBox>
<s:Button x="90" y="81" label=" " click="checkAll()"/>
<s:Button x="168" y="81" label=" " click="checkNotAll()"/>
<s:Button x="246" y="81" label=" " click="reverse()"/>
방금 보 았 을 때 낯 설 었 을 수도 있 습 니 다.아래 에 저 는 Array 의 정 의 를 붙 였 습 니 다
public var array:Array=new Array({"name":" ","id":"chinese","x":"80"},{"name":" ","id":"math","x":"160"},{"name":" ","id":"english","x":"240"});
이런 처 리 는 보통 동적 인 데이터 에 사 용 됩 니 다.정적 인 것 은 바로 썼 습 니 다.다음은 제 ActionScript 입 니 다
//
private function checkAll():void{
for(var i:int=0;i<array.length;i++){
checkbox[i].selected=true;
all=all+checkbox[i].data+",";
}
Alert.show(" :"+all.substr(0,all.lastIndexOf(",")));
all="";
}
//
private function checkNotAll():void{
for(var i:int=0;i<array.length;i++){
checkbox[i].selected=false;
}
}
//
private function reverse():void{
for(var i:int=0;i<array.length;i++){
if(checkbox[i].selected){
checkbox[i].selected=false;
}else{
checkbox[i].selected=true;
}
}
}
간단 하 죠?아래 는 드 롭 다운 사용 입 니 다.제 방법 은 드 롭 다운 을 초기 화하 고 데 이 터 를 연결 하 는 것 입 니 다.이후 필요 에 따라 드 롭 다운 디 스 플레이 내용 을 수정 하고 드 롭 다운 selected Item 을 합 리 적 으로 활용 하면 드 롭 다운 에서 선택 한 값 을 수정 할 수 있 습 니 다
<mx:ComboBox id="subject" x="78" y="149" labelField="name" dataProvider="{array}"/>
<PRE class=java name="code">public function init(event:Event):void{
for(var i:int=0;i<array.length;i++){
if(" "==array[i].name){
subject.selectedIndex=i;
checkbox[i].selected=true;
}
}
}</PRE><BR>
<BR>
, <BR>
<PRE class=html name="code"><?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="init(event)">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
import mx.controls.Alert;
public var all:String="";
public var array:Array=new Array({"name":" ","id":"chinese","x":"80"},{"name":" ","id":"math","x":"160"},{"name":" ","id":"english","x":"240"});
public function init(event:Event):void{
for(var i:int=0;i<array.length;i++){
if(" "==array[i].name){
subject.selectedIndex=i;
checkbox[i].selected=true;
}
}
}
//
private function checkAll():void{
for(var i:int=0;i<array.length;i++){
checkbox[i].selected=true;
all=all+checkbox[i].data+",";
}
Alert.show(" :"+all.substr(0,all.lastIndexOf(",")));
all="";
}
//
private function checkNotAll():void{
for(var i:int=0;i<array.length;i++){
checkbox[i].selected=false;
}
}
//
private function reverse():void{
for(var i:int=0;i<array.length;i++){
if(checkbox[i].selected){
checkbox[i].selected=false;
}else{
checkbox[i].selected=true;
}
}
}
]]>
</fx:Script>
<mx:VBox top="50">
<mx:VBox>
<mx:Canvas width="100%" height="100%" >
<mx:Repeater id="rep" dataProvider="{array}">
<mx:CheckBox id="checkbox" label="{rep.currentItem.name}" x="{rep.currentItem.x}" data="{rep.currentItem.id}"/>
</mx:Repeater>
</mx:Canvas>
</mx:VBox>
<mx:VBox>
</mx:VBox>
</mx:VBox>
<s:Button x="90" y="81" label=" " click="checkAll()"/>
<s:Button x="168" y="81" label=" " click="checkNotAll()"/>
<s:Button x="246" y="81" label=" " click="reverse()"/>
<mx:ComboBox id="subject" x="78" y="149" labelField="name" dataProvider="{array}"/>
</s:Application>
</PRE><BR>
<BR>
<PRE></PRE>
<P></P>
<PRE></PRE>
<IMG alt="" src="http://img.blog.csdn.net/20130706214231250?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvY2hlbndpbGwz/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center">
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
flex는 웹 서비스를 이용하여 사진을 업로드하여 코드를 실현한다WebService 엔드 코드 Flex 클라이언트 코드...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.