Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / TimeField.html
1 <html>\r
2 <head>\r
3   <title>The source code</title>\r
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
6 </head>\r
7 <body  onload="prettyPrint();">\r
8     <pre class="prettyprint lang-js"><div id="cls-Ext.form.TimeField"></div>/**\r
9  * @class Ext.form.TimeField\r
10  * @extends Ext.form.ComboBox\r
11  * Provides a time input field with a time dropdown and automatic time validation.  Example usage:\r
12  * <pre><code>\r
13 new Ext.form.TimeField({\r
14     minValue: '9:00 AM',\r
15     maxValue: '6:00 PM',\r
16     increment: 30\r
17 });\r
18 </code></pre>\r
19  * @constructor\r
20  * Create a new TimeField\r
21  * @param {Object} config\r
22  * @xtype timefield\r
23  */\r
24 Ext.form.TimeField = Ext.extend(Ext.form.ComboBox, {\r
25     <div id="cfg-Ext.form.TimeField-minValue"></div>/**\r
26      * @cfg {Date/String} minValue\r
27      * The minimum allowed time. Can be either a Javascript date object with a valid time value or a string \r
28      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to null).\r
29      */\r
30     minValue : null,\r
31     <div id="cfg-Ext.form.TimeField-maxValue"></div>/**\r
32      * @cfg {Date/String} maxValue\r
33      * The maximum allowed time. Can be either a Javascript date object with a valid time value or a string \r
34      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to null).\r
35      */\r
36     maxValue : null,\r
37     <div id="cfg-Ext.form.TimeField-minText"></div>/**\r
38      * @cfg {String} minText\r
39      * The error text to display when the date in the cell is before minValue (defaults to\r
40      * 'The time in this field must be equal to or after {0}').\r
41      */\r
42     minText : "The time in this field must be equal to or after {0}",\r
43     <div id="cfg-Ext.form.TimeField-maxText"></div>/**\r
44      * @cfg {String} maxText\r
45      * The error text to display when the time is after maxValue (defaults to\r
46      * 'The time in this field must be equal to or before {0}').\r
47      */\r
48     maxText : "The time in this field must be equal to or before {0}",\r
49     <div id="cfg-Ext.form.TimeField-invalidText"></div>/**\r
50      * @cfg {String} invalidText\r
51      * The error text to display when the time in the field is invalid (defaults to\r
52      * '{value} is not a valid time').\r
53      */\r
54     invalidText : "{0} is not a valid time",\r
55     <div id="cfg-Ext.form.TimeField-format"></div>/**\r
56      * @cfg {String} format\r
57      * The default time format string which can be overriden for localization support.  The format must be\r
58      * valid according to {@link Date#parseDate} (defaults to 'g:i A', e.g., '3:15 PM').  For 24-hour time\r
59      * format try 'H:i' instead.\r
60      */\r
61     format : "g:i A",\r
62     <div id="cfg-Ext.form.TimeField-altFormats"></div>/**\r
63      * @cfg {String} altFormats\r
64      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined\r
65      * format (defaults to 'g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H').\r
66      */\r
67     altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H",\r
68     <div id="cfg-Ext.form.TimeField-increment"></div>/**\r
69      * @cfg {Number} increment\r
70      * The number of minutes between each time value in the list (defaults to 15).\r
71      */\r
72     increment: 15,\r
73 \r
74     // private override\r
75     mode: 'local',\r
76     // private override\r
77     triggerAction: 'all',\r
78     // private override\r
79     typeAhead: false,\r
80     \r
81     // private - This is the date to use when generating time values in the absence of either minValue\r
82     // or maxValue.  Using the current date causes DST issues on DST boundary dates, so this is an \r
83     // arbitrary "safe" date that can be any date aside from DST boundary dates.\r
84     initDate: '1/1/2008',\r
85 \r
86     // private\r
87     initComponent : function(){\r
88         if(typeof this.minValue == "string"){\r
89             this.minValue = this.parseDate(this.minValue);\r
90         }\r
91         if(typeof this.maxValue == "string"){\r
92             this.maxValue = this.parseDate(this.maxValue);\r
93         }\r
94 \r
95         if(!this.store){\r
96             var min = this.parseDate(this.minValue) || new Date(this.initDate).clearTime();\r
97             var max = this.parseDate(this.maxValue) || new Date(this.initDate).clearTime().add('mi', (24 * 60) - 1);\r
98             var times = [];\r
99             while(min <= max){\r
100                 times.push(min.dateFormat(this.format));\r
101                 min = min.add('mi', this.increment);\r
102             }\r
103             this.store = times;\r
104         }\r
105         Ext.form.TimeField.superclass.initComponent.call(this);\r
106     },\r
107 \r
108     // inherited docs\r
109     getValue : function(){\r
110         var v = Ext.form.TimeField.superclass.getValue.call(this);\r
111         return this.formatDate(this.parseDate(v)) || '';\r
112     },\r
113 \r
114     // inherited docs\r
115     setValue : function(value){\r
116         return Ext.form.TimeField.superclass.setValue.call(this, this.formatDate(this.parseDate(value)));\r
117     },\r
118 \r
119     // private overrides\r
120     validateValue : Ext.form.DateField.prototype.validateValue,\r
121     parseDate : Ext.form.DateField.prototype.parseDate,\r
122     formatDate : Ext.form.DateField.prototype.formatDate,\r
123 \r
124     // private\r
125     beforeBlur : function(){\r
126         var v = this.parseDate(this.getRawValue());\r
127         if(v){\r
128             this.setValue(v.dateFormat(this.format));\r
129         }\r
130         Ext.form.TimeField.superclass.beforeBlur.call(this);\r
131     }\r
132 \r
133     <div id="cfg-Ext.form.TimeField-grow"></div>/**\r
134      * @cfg {Boolean} grow @hide\r
135      */\r
136     <div id="cfg-Ext.form.TimeField-growMin"></div>/**\r
137      * @cfg {Number} growMin @hide\r
138      */\r
139     <div id="cfg-Ext.form.TimeField-growMax"></div>/**\r
140      * @cfg {Number} growMax @hide\r
141      */\r
142     <div id="method-Ext.form.TimeField-autoSize"></div>/**\r
143      * @hide\r
144      * @method autoSize\r
145      */\r
146 });\r
147 Ext.reg('timefield', Ext.form.TimeField);</pre>    \r
148 </body>\r
149 </html>