Single checkbox field. Can be used as a direct replacement for traditional checkbox fields.
This class has no public properties.
| |
Checkbox(Object config) |
Checkbox |
| Creates a new CheckBox |
| |
applyTo(String/HTMLElement/Element el) : Ext.form.Field |
Field |
| Apply the behaviors of this component to an existing element. This is used instead of render(). |
| |
clearInvalid() : void |
Field |
| Clear any invalid styles/messages for this field |
| |
getName() : String |
Field |
| Returns the name attribute of the field if available |
| |
getRawValue() : Mixed |
Field |
| Returns the raw data value which may or may not be a valid, defined value. To return a normalized value see getValue. |
| |
getValue() : Boolean |
Checkbox |
| Returns the checked state of the checkbox. |
| |
initComponent() : void |
Field |
| * |
| |
isDirty() : void |
Field |
| Returns true if this field has ben changed since it was originally loaded and is not disabled. |
| |
isValid(Boolean preventMark) : Boolean |
Field |
| Returns whether or not the field value is currently valid |
| |
markInvalid(String msg) : void |
Field |
| Mark this field as invalid |
| |
reset() : void |
Field |
| Resets the current field value to the originally-loaded value and clears any validation messages |
| |
setRawValue(Mixed value) : void |
Field |
| Sets the underlying DOM field's value directly, bypassing validation. To set the value with validation see setValue. |
| |
setValue(Boolean/String checked) : void |
Checkbox |
| Sets the checked state of the checkbox |
| |
validate() : Boolean |
Field |
| Validates the field value |
| |
blur : (Ext.form.Field this) |
Field |
| Fires when this field loses input focus. |
| |
change : (Ext.form.Field this, Mixed value, Mixed value) |
Field |
| Fires just before the field blurs if the field value has changed. |
| |
check : (Ext.form.Checkbox this, Boolean checked) |
Checkbox |
| Fires when the checkbox is checked or unchecked |
| |
focus : (Ext.form.Field this) |
Field |
| Fires when this field receives input focus. |
| |
invalid : (Ext.form.Field this, String msg) |
Field |
| Fires after the field has been marked as invalid. |
| |
specialkey : (Ext.form.Field this, Ext.EventObject e) |
Field |
| Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed. You can check
Ext.EventObject.g... |
| |
valid : (Ext.form.Field this) |
Field |
| Fires after the field has been validated with no errors. |
| |
autoCreate : String/Object |
Field |
| A DomHelper element spec, or true for a default element spec (defaults to {tag: "input", type: "text", size: "20", au... |
| |
boxLabel : String |
Checkbox |
| The text that appears beside the checkbox |
| |
checked : Boolean |
Checkbox |
| True if the the checkbox should render already checked (defaults to false) |
| |
fieldClass : String |
Checkbox |
| The default CSS class for the checkbox (defaults to "x-form-field") |
| |
focusClass : String |
Checkbox |
| The CSS class to use when the checkbox receives focus (defaults to 'x-form-check-focus') |
| |
inputType : String |
Field |
| The type attribute for input fields - e.g. radio, text, password. (defaults to "text") |
| |
inputValue : String |
Checkbox |
| The value that should go into the generated input element's value attribute |
| |
invalidClass : String |
Field |
| The CSS class to use when marking a field invalid (defaults to "x-form-invalid") |
| |
invalidText : String |
Field |
| The error text to use when marking a field invalid and no message is provided (defaults to "The value in this field i... |
| |
msgFx : String |
Field |
| Experimental The effect used when displaying a validation message under the field (defaults to 'normal'). |
| |
msgTarget : String |
Field |
| The location where error text should display. Should be one of the following values (defaults to 'qtip'): Value Desc... |
| |
name : String |
Field |
| The field's HTML name attribute |
| |
readOnly : Boolean |
Field |
| True to mark the field as readOnly in HTML - Note: this only sets the readOnly attribute. |
| |
validateOnBlur : String/Boolean |
Field |
| Defaults to true. |
| |
validationDelay : Number |
Field |
| The length of time in milliseconds after user input begins until validation is initiated (defaults to 250) |
| |
validationEvent : String/Boolean |
Field |
| The event that should initiate field validation. Set to false to disable automatic validation. (defaults to "keyup") |
| |
value : Mixed |
Field |
| A value to initialize this field with |
autoCreate
autoCreate : String/Object
A DomHelper element spec, or true for a default element spec (defaults to {tag: "input", type: "text", size: "20", autocomplete: "off"})
This config option is defined by
Field.
boxLabel
boxLabel : String
The text that appears beside the checkbox
This config option is defined by Checkbox.
checked
checked : Boolean
True if the the checkbox should render already checked (defaults to false)
This config option is defined by Checkbox.
fieldClass
fieldClass : String
The default CSS class for the checkbox (defaults to "x-form-field")
This config option is defined by Checkbox.
focusClass
focusClass : String
The CSS class to use when the checkbox receives focus (defaults to 'x-form-check-focus')
This config option is defined by Checkbox.
inputType
inputType : String
The type attribute for input fields - e.g. radio, text, password. (defaults to "text")
This config option is defined by
Field.
inputValue
inputValue : String
The value that should go into the generated input element's value attribute
This config option is defined by Checkbox.
invalidClass
invalidClass : String
The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
This config option is defined by
Field.
invalidText
invalidText : String
The error text to use when marking a field invalid and no message is provided (defaults to "The value in this field is invalid")
This config option is defined by
Field.
msgFx
msgFx : String
Experimental The effect used when displaying a validation message under the field (defaults to 'normal').
This config option is defined by
Field.
msgTarget
msgTarget : String
The location where error text should display. Should be one of the following values (defaults to 'qtip'):
Value Description ----------- ---------------------------------------------------------------------- qtip Display a quick tip when the user hovers over the field title Display a default browser title attribute popup under Add a block div beneath the field containing the error text side Add an error icon to the right of the field with a popup on hover [element id] Add the error text directly to the innerHTML of the specified element
This config option is defined by
Field.
name
name : String
The field's HTML name attribute
This config option is defined by
Field.
readOnly
readOnly : Boolean
True to mark the field as readOnly in HTML - Note: this only sets the readOnly attribute.
This config option is defined by
Field.
validateOnBlur
validateOnBlur : String/Boolean
Defaults to true.
This config option is defined by
Field.
validationDelay
validationDelay : Number
The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
This config option is defined by
Field.
validationEvent
validationEvent : String/Boolean
The event that should initiate field validation. Set to false to disable automatic validation. (defaults to "keyup")
This config option is defined by
Field.
value
value : Mixed
A value to initialize this field with
This config option is defined by
Field.