X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..c8256059947f3aa8f5b0a9a2acf55e2142bb4742:/docs/output/Ext.form.VTypes.html diff --git a/docs/output/Ext.form.VTypes.html b/docs/output/Ext.form.VTypes.html index 0e8f2637..7d7b8468 100644 --- a/docs/output/Ext.form.VTypes.html +++ b/docs/output/Ext.form.VTypes.html @@ -15,7 +15,7 @@ Ext.apply(Ext.form.VTypes, { // vtype Mask property: The keystroke filter mask timeMask: /[\d\s:amp]/i }); -Another example: +Another example:
// custom Vtype for vtype:'IPAddress'
Ext.apply(Ext.form.VTypes, {
IPAddress: function(v) {
@@ -29,8 +29,8 @@ Ext.apply(Ext.form.VTypes, {
'This field should only contain letters and _'VTypes alphanumMask : RegExpThe keystroke filter mask to be applied on alphanumeric input. Defaults to:
/[a-z0-9_]/i VTypes alphanumText : StringThe error text to display when the alphanumeric validation function returns false. Defaults to:
'This field should o...The error text to display when the alphanumeric validation function returns false. Defaults to:
-'This field should only contain letters, numbers and _' VTypes emailMask : RegExpThe keystroke filter mask to be applied on email input. See the email method for
-information about more complex ema...The keystroke filter mask to be applied on email input. See the email method for
+'This field should only contain letters, numbers and _' VTypes emailMask : RegExpThe keystroke filter mask to be applied on email input. See the email method for
+information about more complex emai...The keystroke filter mask to be applied on email input. See the email method for
information about more complex email validation. Defaults to:
/[a-z0-9_\.\-@]/i VTypes emailText : StringThe error text to display when the email validation function returns false. Defaults to:
'This field should be an e-...The error text to display when the email validation function returns false. Defaults to:
@@ -46,7 +46,7 @@ information about more complex email validation. Defaults to:
validation per ...The function used to validate email addresses. Note that this is a very basic validation -- complete
validation per the email RFC specifications is very complex and beyond the scope of this class, although
this function can be overridden if a more comprehensive validation scheme is desired. See the validation
-section of the Wikipedia article on email addresses
+section of the Wikipedia article on email addresses
for additional information. This implementation is intended to validate the following emails:
'barney@example.de', 'barney.rubble@example.com', 'barney-rubble@example.coop', 'barney+rubble@example.com'
.Parameters:value
: StringThe email address
Returns:Boolean
true if the RegExp test passed, and false if not.
VTypes url( String value
)