flex 검증 의 StringValidator

1451 단어 FlexStringValidator
StringValidator 는 주로 입력 문자열 (필수, 최소 문자, 최대 문자) 을 검증 하고 Validator 를 통합 합 니 다.
trigger: 인증 을 촉발 하 는 원본 을 표시 합 니 다.
triggerEvent: 인증 을 촉발 하 는 원본 을 나타 내 는 이벤트
<?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="3"
			maxLength="20"
			required="true"
			trigger="{submitButton}"
			triggerEvent="click"
			tooShortError="          "
			tooLongError="    20   "
			requiredFieldError="         "
			>
		</mx:StringValidator>
	</fx:Declarations>
	<s:VGroup horizontalCenter="0" verticalCenter="0">
		<s:Label text="Enter your username:"/>
		<s:TextInput id="username"/>
		<s:Button label="submit" id="submitButton"/>
	</s:VGroup>
</s:Application>

좋은 웹페이지 즐겨찾기