包 | mx.validators |
类 | public class SocialSecurityValidator |
继承 | SocialSecurityValidator Validator EventDispatcher Object |
The <mx:SocialSecurityValidator>
tag
inherits all of the tag attributes of its superclass,
and adds the following tag attributes:
<mx:SocialSecurityValidator allowedFormatChars=" -" invalidCharError="You entered invalid characters in your Social Security number." wrongFormatError="The Social Security number must be 9 digits or in the form NNN-NN-NNNN." zeroStartError="Invalid Social Security number; the number cannot start with 000." />
属性 | 定义方 | ||
---|---|---|---|
allowedFormatChars : String 指定输入中允许的格式化字符集。 | SocialSecurityValidator | ||
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
enabled : Boolean 将此值设置为 false 将停止验证程序执行验证操作。 | Validator | ||
invalidCharError : String 值包含 allowedFormatChars 属性定义的数字和格式化字符之外的字符时的错误消息。 | SocialSecurityValidator | ||
listener : Object 指定验证侦听器。 | Validator | ||
property : String 一个字符串,用于指定包含要验证的值的 source 对象的属性名称。 | Validator | ||
prototype : Object [静态]
对类或函数对象的原型对象的引用。 | Object | ||
required : Boolean = true 如果为 true,则指定缺少值或空值将导致验证错误。 | Validator | ||
requiredFieldError : String 缺少值和 required 属性为 true 时的错误消息。 | Validator | ||
source : Object 指定包含要验证的属性的对象。 | Validator | ||
trigger : IEventDispatcher 指定生成触发验证程序的组件。 | Validator | ||
triggerEvent : String 指定触发验证的事件。 | Validator | ||
wrongFormatError : String 值的格式设置不正确时的错误消息。 | SocialSecurityValidator | ||
zeroStartError : String 值包含无效社会保障号时的错误消息。 | SocialSecurityValidator |
方法 | 定义方 | ||
---|---|---|---|
构造函数。 | SocialSecurityValidator | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void 使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。 | EventDispatcher | ||
将事件调度到事件流中。 | EventDispatcher | ||
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。 | EventDispatcher | ||
指示对象是否已经定义了指定的属性。 | Object | ||
如果 Validator 是使用 MXML 标签创建的,则由 MXML 编译器自动调用。 | Validator | ||
指示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
指示指定的属性是否存在、是否可枚举。 | Object | ||
从 EventDispatcher 对象中删除侦听器。 | EventDispatcher | ||
设置循环操作动态属性的可用性。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
执行验证并(可选)将结果通知给侦听器。 | Validator | ||
[静态] 调用验证程序数组中的所有验证程序。 | Validator | ||
[静态] 用于调用验证程序的方便方法。 | SocialSecurityValidator | ||
返回指定对象的原始值。 | Object | ||
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。 | EventDispatcher |
方法 | 定义方 | ||
---|---|---|---|
为从验证程序调度的有效和无效事件设置所有侦听器。 | Validator | ||
覆盖基类 doValidation() 方法以验证社会保障号。 | SocialSecurityValidator | ||
返回要验证的对象。 | Validator | ||
从错误结果数组返回 ValidationResultEvent。 | Validator | ||
如果值不为 null,则返回 true。 | Validator | ||
断开从验证程序调度的有效和无效事件的所有侦听器的连接。 | Validator | ||
构造 Validator 后,每当 ResourceManager 又调度一个“change”事件以指示已通过某种方式更改了本地化资源时,将会调用此方法。 | Validator |
allowedFormatChars | 属性 |
allowedFormatChars:String
[读写] 指定输入中允许的格式化字符集。
默认值为 "()- .+" // ?????.
public function get allowedFormatChars():String
public function set allowedFormatChars(value:String):void
invalidCharError | 属性 |
invalidCharError:String
[读写]
值包含 allowedFormatChars
属性定义的数字和格式化字符之外的字符时的错误消息。
默认值为 "You entered invalid characters in your Social Security number.".
public function get invalidCharError():String
public function set invalidCharError(value:String):void
wrongFormatError | 属性 |
wrongFormatError:String
[读写] 值的格式设置不正确时的错误消息。
默认值为 "The Social Security number must be 9 digits or in the form NNN-NN-NNNN.".
public function get wrongFormatError():String
public function set wrongFormatError(value:String):void
zeroStartError | 属性 |
zeroStartError:String
[读写] 值包含无效社会保障号时的错误消息。
默认值为 "Invalid Social Security number; the number cannot start with 000.".
public function get zeroStartError():String
public function set zeroStartError(value:String):void
SocialSecurityValidator | () | 构造函数 |
public function SocialSecurityValidator()
构造函数。
doValidation | () | 方法 |
override protected function doValidation(value:Object):Array
覆盖基类 doValidation()
方法以验证社会保障号。
不要直接调用此方法;Flex 会在执行验证的过程中调用它。如果创建自定义 Validator 类,则必须实现此方法。
参数
value:Object — 要验证的对象。 |
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。 |
validateSocialSecurity | () | 方法 |
public static function validateSocialSecurity(validator:SocialSecurityValidator, value:Object, baseField:String):Array
用于调用验证程序的方便方法。每个标准 Flex 验证程序都有一个类似的方便方法。
参数
validator:SocialSecurityValidator — SocialSecurityValidator 实例。 | |
value:Object — 要验证的字段。 | |
baseField:String —
在 value 参数中指定的子字段的文本表示形式。例如,如果 value 参数指定 value.social,则 baseField 值为 social 。
|
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。 |
另请参见
<?xml version="1.0" encoding="utf-8"?> <!-- Simple example to demonstrate SocialSecurityValidator. --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> import mx.controls.Alert; </mx:Script> <mx:SocialSecurityValidator source="{ssn}" property="text" trigger="{myButton}" triggerEvent="click" valid="Alert.show('Validation Succeeded!');"/> <mx:Panel title="Social Security Validator Panel" width="75%" height="75%" paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> <mx:Form> <mx:FormItem label="Enter Social Security number: "> <mx:TextInput id="ssn" width="100%"/> </mx:FormItem> <mx:FormItem > <mx:Button id="myButton" label="Validate" /> </mx:FormItem> </mx:Form> </mx:Panel> </mx:Application>