套件 | mx.validators |
介面 | public interface IValidator |
實作者 | GlobalizationValidatorBase, Validator |
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4.5 |
執行階段版本: | Flash Player 10, AIR 1.5 |
This interface allows to validate multiple data types like numbers, currency, phone numbers, zip codes etc that are defined in both mx and spark namespaces. The classes mx:Validator and spark:GlobaliationValidatorBase implement this interface. The validateAll() method in these classes use this interface type to call the validate() method on multiple validator objects.
相關 API 元素
spark.validators.GlobalizationValidatorBase
方法 | 定義自 | ||
---|---|---|---|
Performs validation and optionally notifies
the listeners of the result. | IValidator |
enabled | 屬性 |
enabled:Boolean
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4.5 |
執行階段版本: | Flash Player 10.1, AIR 2.0 |
Property to enable/disable validation process.
Setting this value to false
will stop the validator
from performing validation.
When a validator is disabled, it dispatches no events,
and the validate()
method returns null.
預設值為 true。
實作
public function get enabled():Boolean
public function set enabled(value:Boolean):void
validate | () | 方法 |
public function validate(value:Object = null, suppressEvents:Boolean = false):ValidationResultEvent
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4.5 |
執行階段版本: | Flash Player 10.1, AIR 2.5 |
Performs validation and optionally notifies the listeners of the result.
參數
value:Object (default = null ) — Optional value to validate.
If null, then the validator uses the source and
property properties to determine the value.
If you specify this argument, you should also set the
listener property to specify the target component
for any validation error messages.
| |
suppressEvents:Boolean (default = false ) — If false , then after validation,
the validator will notify the listener of the result.
|
ValidationResultEvent — A ValidationResultEvent object
containing the results of the validation.
For a successful validation, the
ValidationResultEvent.results Array property is empty.
For a validation failure, the
ValidationResultEvent.results Array property contains
one ValidationResult object for each field checked by the validator,
both for fields that failed the validation and for fields that passed.
Examine the ValidationResult.isError
property to determine if the field passed or failed the validation.
|
相關 API 元素
Tue Jun 12 2018, 03:47 PM Z