flex validator 의 통과 성 검증

1469 단어 Flash
주: 오리지널 작품 은 교류 학습 을 위해 공유 하고 전재 하 며 출처 를 밝 혀 주 십시오.
  성 검증 을 통 해 제출 단 추 를 누 를 때 모든 구성 요 소 를 검증 합 니 다.
<?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">
	<s:layout>
		<s:BasicLayout/>
	</s:layout>
	<fx:Declarations>
		<!--       (    、   )     -->
		<mx:StringValidator source="{username}"
							property="text"
							minLength="6"
							trigger="{SubmitButton}"
							triggerEvent="click"
							/>
		<mx:EmailValidator source="{email}"
						   property="text"
						   trigger="{SubmitButton}"
						   triggerEvent="click"
						   />
	</fx:Declarations>
	
	<s:VGroup horizontalCenter="0" verticalCenter="0">
		<s:Label text="email:"/>
		<s:TextInput id="email"/>
		<s:Label text="userName"/>
		<s:TextInput id="username"/>
		<s:Button label="Submit" id="SubmitButton"/>
	</s:VGroup>
</s:Application>

좋은 웹페이지 즐겨찾기