| Package | org.openzet.controls |
| Class | public class SSNTextInput |
| Inheritance | SSNTextInput mx.core.UIComponent |
| Property | Defined by | ||
|---|---|---|---|
| block : Boolean = false
Flag to specify whether to display latter part of SSN as
| SSNTextInput | ||
| isValid : Boolean [read-only]
Property that returns whether to SSN is valid.
| SSNTextInput | ||
| showIcon : Boolean
Property to specify whether to show icon.
| SSNTextInput | ||
| ssn : String
SSN string value.
| SSNTextInput | ||
| ssn1 : String
First part of SSN.
| SSNTextInput | ||
| ssn2 : String
Second part of SSN.
| SSNTextInput | ||
| textInput1 : TextInput
TextInput to display the first part of SSN.
| SSNTextInput | ||
| textInput2 : TextInput
TextInput to display the second part of SSN.
| SSNTextInput | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor
| SSNTextInput | ||
| Event | Summary | Defined by | ||
|---|---|---|---|---|
| Dispatched when text in the TextInput control changes through user input. | SSNTextInput | |||
| Dispatched when the user presses the Enter key. | SSNTextInput | |||
| Dispatched when SSN is invalid. | SSNTextInput | |||
| Dispatched when SSN is valid. | SSNTextInput | |||
| block | property |
public var block:Boolean = falseFlag to specify whether to display latter part of SSN as
The default value is false.
| isValid | property |
isValid:Boolean [read-only]Property that returns whether to SSN is valid.
Implementation public function get isValid():Boolean
| showIcon | property |
showIcon:Boolean [read-write]Property to specify whether to show icon.
The default value is false.
This property can be used as the source for data binding.
Implementation public function get showIcon():Boolean
public function set showIcon(value:Boolean):void
| ssn | property |
ssn:String [read-write]SSN string value.
Implementation public function get ssn():String
public function set ssn(value:String):void
| ssn1 | property |
ssn1:String [read-write]First part of SSN.
This property can be used as the source for data binding.
Implementation public function get ssn1():String
public function set ssn1(value:String):void
| ssn2 | property |
ssn2:String [read-write]Second part of SSN.
This property can be used as the source for data binding.
Implementation public function get ssn2():String
public function set ssn2(value:String):void
| textInput1 | property |
public var textInput1:TextInputTextInput to display the first part of SSN.
| textInput2 | property |
public var textInput2:TextInputTextInput to display the second part of SSN.
| SSNTextInput | () | constructor |
public function SSNTextInput()Constructor
| change | event |
flash.events.Event
Dispatched when text in the TextInput control changes through user input. This event does not occur if you use data binding or ActionScript code to change the text.
| enter | event |
| invalidSSN | event |
| validSSN | event |