+ \r
+ <div id="method-Ext.form.TimeField-setMinValue"></div>/**\r
+ * Replaces any existing {@link #minValue} with the new time and refreshes the store.\r
+ * @param {Date/String} value The minimum time that can be selected\r
+ */\r
+ setMinValue: function(value, /* private */ initial){\r
+ this.setLimit(value, true, initial);\r
+ return this;\r
+ },\r
+\r
+ <div id="method-Ext.form.TimeField-setMaxValue"></div>/**\r
+ * Replaces any existing {@link #maxValue} with the new time and refreshes the store.\r
+ * @param {Date/String} value The maximum time that can be selected\r
+ */\r
+ setMaxValue: function(value, /* private */ initial){\r
+ this.setLimit(value, false, initial);\r
+ return this;\r
+ },\r
+ \r
+ // private\r
+ generateStore: function(initial){\r
+ var min = this.minValue || new Date(this.initDate).clearTime(),\r
+ max = this.maxValue || new Date(this.initDate).clearTime().add('mi', (24 * 60) - 1),\r
+ times = [];\r
+ \r
+ while(min <= max){\r
+ times.push(min.dateFormat(this.format));\r
+ min = min.add('mi', this.increment);\r
+ }\r
+ this.bindStore(times, initial);\r
+ },\r