Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.form.field.VTypes.js
1 Ext.data.JsonP.Ext_form_field_VTypes({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9
10     ],
11     "method": [
12       {
13         "deprecated": null,
14         "alias": null,
15         "protected": false,
16         "tagname": "method",
17         "href": "Base3.html#Ext-Base-method-addStatics",
18         "shortDoc": "Add / override static properties of this class. ...",
19         "static": true,
20         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
21         "private": false,
22         "params": [
23           {
24             "type": "Object",
25             "optional": false,
26             "doc": "\n",
27             "name": "members"
28           }
29         ],
30         "name": "addStatics",
31         "owner": "Ext.Base",
32         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
33         "linenr": 388,
34         "return": {
35           "type": "Ext.Base",
36           "doc": "<p>this</p>\n"
37         },
38         "html_filename": "Base3.html"
39       },
40       {
41         "deprecated": null,
42         "alias": null,
43         "protected": false,
44         "tagname": "method",
45         "href": "VTypes.html#Ext-form-field-VTypes-method-alpha",
46         "shortDoc": "The function used to validate alpha values ...",
47         "static": false,
48         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
49         "private": false,
50         "params": [
51           {
52             "type": "String",
53             "optional": false,
54             "doc": "<p>The value</p>\n",
55             "name": "value"
56           }
57         ],
58         "name": "alpha",
59         "owner": "Ext.form.field.VTypes",
60         "doc": "<p>The function used to validate alpha values</p>\n",
61         "linenr": 90,
62         "return": {
63           "type": "Boolean",
64           "doc": "<p>true if the RegExp test passed, and false if not.</p>\n"
65         },
66         "html_filename": "VTypes.html"
67       },
68       {
69         "deprecated": null,
70         "alias": null,
71         "protected": false,
72         "tagname": "method",
73         "href": "VTypes.html#Ext-form-field-VTypes-method-alphanum",
74         "shortDoc": "The function used to validate alphanumeric values ...",
75         "static": false,
76         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
77         "private": false,
78         "params": [
79           {
80             "type": "String",
81             "optional": false,
82             "doc": "<p>The value</p>\n",
83             "name": "value"
84           }
85         ],
86         "name": "alphanum",
87         "owner": "Ext.form.field.VTypes",
88         "doc": "<p>The function used to validate alphanumeric values</p>\n",
89         "linenr": 111,
90         "return": {
91           "type": "Boolean",
92           "doc": "<p>true if the RegExp test passed, and false if not.</p>\n"
93         },
94         "html_filename": "VTypes.html"
95       },
96       {
97         "deprecated": null,
98         "alias": null,
99         "protected": false,
100         "tagname": "method",
101         "href": "Base3.html#Ext-Base-method-callOverridden",
102         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
103         "static": false,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
105         "private": false,
106         "params": [
107           {
108             "type": "Array/Arguments",
109             "optional": false,
110             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
111             "name": "args"
112           }
113         ],
114         "name": "callOverridden",
115         "owner": "Ext.Base",
116         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
117         "linenr": 269,
118         "return": {
119           "type": "Mixed",
120           "doc": "<p>Returns the result after calling the overridden method</p>\n"
121         },
122         "html_filename": "Base3.html"
123       },
124       {
125         "deprecated": null,
126         "alias": null,
127         "protected": true,
128         "tagname": "method",
129         "href": "Base3.html#Ext-Base-method-callParent",
130         "shortDoc": "Call the parent's overridden method. ...",
131         "static": false,
132         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
133         "private": false,
134         "params": [
135           {
136             "type": "Array/Arguments",
137             "optional": false,
138             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
139             "name": "args"
140           }
141         ],
142         "name": "callParent",
143         "owner": "Ext.Base",
144         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
145         "linenr": 124,
146         "return": {
147           "type": "Mixed",
148           "doc": "<p>Returns the result from the superclass' method</p>\n"
149         },
150         "html_filename": "Base3.html"
151       },
152       {
153         "deprecated": null,
154         "alias": null,
155         "protected": false,
156         "tagname": "method",
157         "href": "Base3.html#Ext-Base-method-create",
158         "shortDoc": "Create a new instance of this Class. ...",
159         "static": true,
160         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
161         "private": false,
162         "params": [
163
164         ],
165         "name": "create",
166         "owner": "Ext.Base",
167         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
168         "linenr": 329,
169         "return": {
170           "type": "Object",
171           "doc": "<p>the created instance.</p>\n"
172         },
173         "html_filename": "Base3.html"
174       },
175       {
176         "deprecated": null,
177         "alias": null,
178         "protected": false,
179         "tagname": "method",
180         "href": "Base3.html#Ext-Base-method-createAlias",
181         "shortDoc": "Create aliases for existing prototype methods. ...",
182         "static": true,
183         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
184         "private": false,
185         "params": [
186           {
187             "type": "String/Object",
188             "optional": false,
189             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
190             "name": "alias"
191           },
192           {
193             "type": "String/Object",
194             "optional": false,
195             "doc": "<p>The original method name</p>\n",
196             "name": "origin"
197           }
198         ],
199         "name": "createAlias",
200         "owner": "Ext.Base",
201         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
202         "linenr": 648,
203         "return": {
204           "type": "void",
205           "doc": "\n"
206         },
207         "html_filename": "Base3.html"
208       },
209       {
210         "deprecated": null,
211         "alias": null,
212         "protected": false,
213         "tagname": "method",
214         "href": "VTypes.html#Ext-form-field-VTypes-method-email",
215         "shortDoc": "The function used to validate email addresses. ...",
216         "static": false,
217         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
218         "private": false,
219         "params": [
220           {
221             "type": "String",
222             "optional": false,
223             "doc": "<p>The email address</p>\n",
224             "name": "value"
225           }
226         ],
227         "name": "email",
228         "owner": "Ext.form.field.VTypes",
229         "doc": "<p>The function used to validate email addresses.  Note that this is a very basic validation -- complete\nvalidation per the email RFC specifications is very complex and beyond the scope of this class, although\nthis function can be overridden if a more comprehensive validation scheme is desired.  See the validation\nsection of the <a href=\"http://en.wikipedia.org/wiki/E-mail_address\">Wikipedia article on email addresses</a>\nfor additional information.  This implementation is intended to validate the following emails:<tt>\n'barney@example.de', 'barney.rubble@example.com', 'barney-rubble@example.coop', 'barney+rubble@example.com'\n</tt>.</p>\n",
230         "linenr": 47,
231         "return": {
232           "type": "Boolean",
233           "doc": "<p>true if the RegExp test passed, and false if not.</p>\n"
234         },
235         "html_filename": "VTypes.html"
236       },
237       {
238         "deprecated": null,
239         "alias": null,
240         "protected": false,
241         "tagname": "method",
242         "href": "Base3.html#Ext-Base-method-getName",
243         "shortDoc": "Get the current class' name in string format. ...",
244         "static": false,
245         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
246         "private": false,
247         "params": [
248
249         ],
250         "name": "getName",
251         "owner": "Ext.Base",
252         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
253         "linenr": 631,
254         "return": {
255           "type": "String",
256           "doc": "<p>className</p>\n"
257         },
258         "html_filename": "Base3.html"
259       },
260       {
261         "deprecated": null,
262         "alias": null,
263         "protected": false,
264         "tagname": "method",
265         "href": "Base3.html#Ext-Base-method-implement",
266         "shortDoc": "Add methods / properties to the prototype of this class. ...",
267         "static": true,
268         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
269         "private": false,
270         "params": [
271           {
272             "type": "Object",
273             "optional": false,
274             "doc": "\n",
275             "name": "members"
276           }
277         ],
278         "name": "implement",
279         "owner": "Ext.Base",
280         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
281         "linenr": 415,
282         "return": {
283           "type": "void",
284           "doc": "\n"
285         },
286         "html_filename": "Base3.html"
287       },
288       {
289         "deprecated": null,
290         "alias": null,
291         "protected": true,
292         "tagname": "method",
293         "href": "Base3.html#Ext-Base-method-initConfig",
294         "shortDoc": "Initialize configuration for this class. ...",
295         "static": false,
296         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
297         "private": false,
298         "params": [
299           {
300             "type": "Object",
301             "optional": false,
302             "doc": "\n",
303             "name": "config"
304           }
305         ],
306         "name": "initConfig",
307         "owner": "Ext.Base",
308         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
309         "linenr": 63,
310         "return": {
311           "type": "Object",
312           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
313         },
314         "html_filename": "Base3.html"
315       },
316       {
317         "deprecated": null,
318         "alias": null,
319         "protected": false,
320         "tagname": "method",
321         "href": "Base3.html#Ext-Base-method-override",
322         "shortDoc": "Override prototype members of this class. ...",
323         "static": true,
324         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
325         "private": false,
326         "params": [
327           {
328             "type": "Object",
329             "optional": false,
330             "doc": "\n",
331             "name": "members"
332           }
333         ],
334         "name": "override",
335         "owner": "Ext.Base",
336         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
337         "linenr": 518,
338         "return": {
339           "type": "Ext.Base",
340           "doc": "<p>this</p>\n"
341         },
342         "html_filename": "Base3.html"
343       },
344       {
345         "deprecated": null,
346         "alias": null,
347         "protected": true,
348         "tagname": "method",
349         "href": "Base3.html#Ext-Base-method-statics",
350         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
351         "static": false,
352         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
353         "private": false,
354         "params": [
355
356         ],
357         "name": "statics",
358         "owner": "Ext.Base",
359         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
360         "linenr": 199,
361         "return": {
362           "type": "Class",
363           "doc": "\n"
364         },
365         "html_filename": "Base3.html"
366       },
367       {
368         "deprecated": null,
369         "alias": null,
370         "protected": false,
371         "tagname": "method",
372         "href": "VTypes.html#Ext-form-field-VTypes-method-url",
373         "shortDoc": "The function used to validate URLs ...",
374         "static": false,
375         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
376         "private": false,
377         "params": [
378           {
379             "type": "String",
380             "optional": false,
381             "doc": "<p>The URL</p>\n",
382             "name": "value"
383           }
384         ],
385         "name": "url",
386         "owner": "Ext.form.field.VTypes",
387         "doc": "<p>The function used to validate URLs</p>\n",
388         "linenr": 75,
389         "return": {
390           "type": "Boolean",
391           "doc": "<p>true if the RegExp test passed, and false if not.</p>\n"
392         },
393         "html_filename": "VTypes.html"
394       }
395     ],
396     "property": [
397       {
398         "type": "RegExp",
399         "deprecated": null,
400         "alias": null,
401         "protected": false,
402         "tagname": "property",
403         "href": "VTypes.html#Ext-form-field-VTypes-property-alphaMask",
404         "shortDoc": "The keystroke filter mask to be applied on alpha input. ...",
405         "static": false,
406         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
407         "private": false,
408         "name": "alphaMask",
409         "owner": "Ext.form.field.VTypes",
410         "doc": "<p>The keystroke filter mask to be applied on alpha input.  Defaults to:\n<tt>/[a-z_]/i</tt></p>\n",
411         "linenr": 104,
412         "html_filename": "VTypes.html"
413       },
414       {
415         "type": "String",
416         "deprecated": null,
417         "alias": null,
418         "protected": false,
419         "tagname": "property",
420         "href": "VTypes.html#Ext-form-field-VTypes-property-alphaText",
421         "shortDoc": "The error text to display when the alpha validation function returns false. ...",
422         "static": false,
423         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
424         "private": false,
425         "name": "alphaText",
426         "owner": "Ext.form.field.VTypes",
427         "doc": "<p>The error text to display when the alpha validation function returns false.  Defaults to:\n<tt>'This field should only contain letters and _'</tt></p>\n",
428         "linenr": 98,
429         "html_filename": "VTypes.html"
430       },
431       {
432         "type": "RegExp",
433         "deprecated": null,
434         "alias": null,
435         "protected": false,
436         "tagname": "property",
437         "href": "VTypes.html#Ext-form-field-VTypes-property-alphanumMask",
438         "shortDoc": "The keystroke filter mask to be applied on alphanumeric input. ...",
439         "static": false,
440         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
441         "private": false,
442         "name": "alphanumMask",
443         "owner": "Ext.form.field.VTypes",
444         "doc": "<p>The keystroke filter mask to be applied on alphanumeric input.  Defaults to:\n<tt>/[a-z0-9_]/i</tt></p>\n",
445         "linenr": 125,
446         "html_filename": "VTypes.html"
447       },
448       {
449         "type": "String",
450         "deprecated": null,
451         "alias": null,
452         "protected": false,
453         "tagname": "property",
454         "href": "VTypes.html#Ext-form-field-VTypes-property-alphanumText",
455         "shortDoc": "The error text to display when the alphanumeric validation function returns false. ...",
456         "static": false,
457         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
458         "private": false,
459         "name": "alphanumText",
460         "owner": "Ext.form.field.VTypes",
461         "doc": "<p>The error text to display when the alphanumeric validation function returns false.  Defaults to:\n<tt>'This field should only contain letters, numbers and _'</tt></p>\n",
462         "linenr": 119,
463         "html_filename": "VTypes.html"
464       },
465       {
466         "type": "RegExp",
467         "deprecated": null,
468         "alias": null,
469         "protected": false,
470         "tagname": "property",
471         "href": "VTypes.html#Ext-form-field-VTypes-property-emailMask",
472         "shortDoc": "The keystroke filter mask to be applied on email input. ...",
473         "static": false,
474         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
475         "private": false,
476         "name": "emailMask",
477         "owner": "Ext.form.field.VTypes",
478         "doc": "<p>The keystroke filter mask to be applied on email input.  See the <a href=\"#/api/Ext.form.field.VTypes-method-email\" rel=\"Ext.form.field.VTypes-method-email\" class=\"docClass\">email</a> method for\ninformation about more complex email validation. Defaults to:\n<tt>/[a-z0-9_.-@]/i</tt></p>\n",
479         "linenr": 67,
480         "html_filename": "VTypes.html"
481       },
482       {
483         "type": "String",
484         "deprecated": null,
485         "alias": null,
486         "protected": false,
487         "tagname": "property",
488         "href": "VTypes.html#Ext-form-field-VTypes-property-emailText",
489         "shortDoc": "The error text to display when the email validation function returns false. ...",
490         "static": false,
491         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
492         "private": false,
493         "name": "emailText",
494         "owner": "Ext.form.field.VTypes",
495         "doc": "<p>The error text to display when the email validation function returns false.  Defaults to:\n<tt>'This field should be an e-mail address in the format \"user@example.com\"'</tt></p>\n",
496         "linenr": 61,
497         "html_filename": "VTypes.html"
498       },
499       {
500         "type": "Class",
501         "deprecated": null,
502         "alias": null,
503         "protected": true,
504         "tagname": "property",
505         "href": "Base3.html#Ext-Base-property-self",
506         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
507         "static": false,
508         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
509         "private": false,
510         "name": "self",
511         "owner": "Ext.Base",
512         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
513         "linenr": 18,
514         "html_filename": "Base3.html"
515       },
516       {
517         "type": "String",
518         "deprecated": null,
519         "alias": null,
520         "protected": false,
521         "tagname": "property",
522         "href": "VTypes.html#Ext-form-field-VTypes-property-urlText",
523         "shortDoc": "The error text to display when the url validation function returns false. ...",
524         "static": false,
525         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
526         "private": false,
527         "name": "urlText",
528         "owner": "Ext.form.field.VTypes",
529         "doc": "<p>The error text to display when the url validation function returns false.  Defaults to:\n<tt>'This field should be a URL in the format \"http:/'+'/www.example.com\"'</tt></p>\n",
530         "linenr": 83,
531         "html_filename": "VTypes.html"
532       }
533     ],
534     "cssVar": [
535
536     ],
537     "cssMixin": [
538
539     ],
540     "event": [
541
542     ]
543   },
544   "singleton": true,
545   "alias": null,
546   "superclasses": [
547     "Ext.Base"
548   ],
549   "protected": false,
550   "tagname": "class",
551   "mixins": [
552
553   ],
554   "href": "VTypes.html#Ext-form-field-VTypes",
555   "subclasses": [
556
557   ],
558   "static": false,
559   "author": null,
560   "component": false,
561   "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/form/field/VTypes.js",
562   "private": false,
563   "alternateClassNames": [
564
565   ],
566   "name": "Ext.form.field.VTypes",
567   "doc": "<p>This is a singleton object which contains a set of commonly used field validation functions.\nThe validations provided are basic and intended to be easily customizable and extended.</p>\n\n\n<p>To add custom VTypes specify the <code><a href=\"#/api/Ext.form.field.Text-cfg-vtype\" rel=\"Ext.form.field.Text-cfg-vtype\" class=\"docClass\">vtype</a></code> validation\ntest function, and optionally specify any corresponding error text to display and any keystroke\nfiltering mask to apply. For example:</p>\n\n\n<pre><code>// custom Vtype for vtype:'time'\nvar timeTest = /^([1-9]|1[0-9]):([0-5][0-9])(\\s[a|p]m)$/i;\nExt.apply(Ext.form.field.VTypes, {\n    //  vtype validation function\n    time: function(val, field) {\n        return timeTest.test(val);\n    },\n    // vtype Text property: The error text to display when the validation function returns false\n    timeText: 'Not a valid time.  Must be in the format \"12:34 PM\".',\n    // vtype Mask property: The keystroke filter mask\n    timeMask: /[\\d\\s:amp]/i\n});\n</code></pre>\n\n\n<p>Another example:</p>\n\n<pre><code>// custom Vtype for vtype:'IPAddress'\nExt.apply(Ext.form.field.VTypes, {\n    IPAddress:  function(v) {\n        return /^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}$/.test(v);\n    },\n    IPAddressText: 'Must be a numeric IP address',\n    IPAddressMask: /[\\d\\.]/i\n});\n</code></pre>\n\n",
568   "mixedInto": [
569
570   ],
571   "linenr": 1,
572   "xtypes": [
573
574   ],
575   "html_filename": "VTypes.html",
576   "extends": "Ext.Base"
577 });