X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Time.html diff --git a/docs/source/Time.html b/docs/source/Time.html index 3805e0e3..e3c31268 100644 --- a/docs/source/Time.html +++ b/docs/source/Time.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.form.field.Time
  * @extends Ext.form.field.Picker
  * <p>Provides a time input field with a time dropdown and automatic time validation.</p>
@@ -46,7 +63,7 @@ Ext.define('Ext.form.field.Time', {
     requires: ['Ext.form.field.Date', 'Ext.picker.Time', 'Ext.view.BoundListKeyNav', 'Ext.Date'],
     alternateClassName: ['Ext.form.TimeField', 'Ext.form.Time'],
 
-    /**
+    /**
      * @cfg {String} triggerCls
      * An additional CSS class used to style the trigger button.  The trigger will always get the
      * {@link #triggerBaseCls} by default and <tt>triggerCls</tt> will be <b>appended</b> if specified.
@@ -54,40 +71,40 @@ Ext.define('Ext.form.field.Time', {
      */
     triggerCls: Ext.baseCSSPrefix + 'form-time-trigger',
 
-    /**
+    /**
      * @cfg {Date/String} minValue
      * The minimum allowed time. Can be either a Javascript date object with a valid time value or a string
      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to undefined).
      */
 
-    /**
+    /**
      * @cfg {Date/String} maxValue
      * The maximum allowed time. Can be either a Javascript date object with a valid time value or a string
      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to undefined).
      */
 
-    /**
+    /**
      * @cfg {String} minText
      * The error text to display when the entered time is before {@link #minValue} (defaults to
      * 'The time in this field must be equal to or after {0}').
      */
     minText : "The time in this field must be equal to or after {0}",
 
-    /**
+    /**
      * @cfg {String} maxText
      * The error text to display when the entered time is after {@link #maxValue} (defaults to
      * 'The time in this field must be equal to or before {0}').
      */
     maxText : "The time in this field must be equal to or before {0}",
 
-    /**
+    /**
      * @cfg {String} invalidText
      * The error text to display when the time in the field is invalid (defaults to
      * '{value} is not a valid time').
      */
     invalidText : "{0} is not a valid time",
 
-    /**
+    /**
      * @cfg {String} format
      * The default time format string which can be overriden for localization support.  The format must be
      * valid according to {@link Ext.Date#parse} (defaults to 'g:i A', e.g., '3:15 PM').  For 24-hour time
@@ -95,37 +112,37 @@ Ext.define('Ext.form.field.Time', {
      */
     format : "g:i A",
 
-    /**
+    /**
      * @cfg {String} submitFormat The date format string which will be submitted to the server.
      * The format must be valid according to {@link Ext.Date#parse} (defaults to <tt>{@link #format}</tt>).
      */
 
-    /**
+    /**
      * @cfg {String} altFormats
      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
      * 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|gi a|hi a|giA|hiA|gi A|hi A').
      */
     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|gi a|hi a|giA|hiA|gi A|hi A",
 
-    /**
+    /**
      * @cfg {Number} increment
      * The number of minutes between each time value in the list (defaults to 15).
      */
     increment: 15,
 
-    /**
+    /**
      * @cfg {Number} pickerMaxHeight
      * The maximum height of the {@link Ext.picker.Time} dropdown. Defaults to 300.
      */
     pickerMaxHeight: 300,
 
-    /**
+    /**
      * @cfg {Boolean} selectOnTab
      * Whether the Tab key should select the currently highlighted item. Defaults to <tt>true</tt>.
      */
     selectOnTab: true,
 
-    /**
+    /**
      * @private
      * This is the date to use when generating time values in the absence of either minValue
      * or maxValue.  Using the current date causes DST issues on DST boundary dates, so this is an
@@ -160,7 +177,7 @@ Ext.define('Ext.form.field.Time', {
         me.callParent();
     },
 
-    /**
+    /**
      * Replaces any existing {@link #minValue} with the new time and refreshes the picker's range.
      * @param {Date/String} value The minimum time that can be selected
      */
@@ -173,7 +190,7 @@ Ext.define('Ext.form.field.Time', {
         }
     },
 
-    /**
+    /**
      * Replaces any existing {@link #maxValue} with the new time and refreshes the picker's range.
      * @param {Date/String} value The maximum time that can be selected
      */
@@ -186,7 +203,7 @@ Ext.define('Ext.form.field.Time', {
         }
     },
 
-    /**
+    /**
      * @private
      * Updates either the min or max value. Converts the user's value into a Date object whose
      * year/month/day is set to the {@link #initDate} so that only the time fields are significant.
@@ -215,7 +232,7 @@ Ext.define('Ext.form.field.Time', {
         return this.formatDate(this.parseDate(value));
     },
 
-    /**
+    /**
      * Runs all of Time's validations and returns an array of any errors. Note that this first
      * runs Text's validations, so the returned array is an amalgamation of all field errors.
      * The additional validation checks are testing that the time format is valid, that the chosen
@@ -258,7 +275,7 @@ Ext.define('Ext.form.field.Time', {
         return Ext.form.field.Date.prototype.formatDate.apply(this, arguments);
     },
 
-    /**
+    /**
      * @private
      * Parses an input value into a valid Date object.
      * @param {String/Date} value
@@ -313,7 +330,7 @@ Ext.define('Ext.form.field.Time', {
         return value ? Ext.Date.format(value, format) : null;
     },
 
-    /**
+    /**
      * @private
      * Creates the {@link Ext.picker.Time}
      */
@@ -343,7 +360,7 @@ Ext.define('Ext.form.field.Time', {
         return picker;
     },
 
-    /**
+    /**
      * @private
      * Enables the key nav for the Time picker when it is expanded.
      * TODO this is largely the same logic as ComboBox, should factor out.
@@ -386,7 +403,7 @@ Ext.define('Ext.form.field.Time', {
         }
     },
 
-    /**
+    /**
      * @private
      * Disables the key nav for the Time picker when it is collapsed.
      */
@@ -399,7 +416,7 @@ Ext.define('Ext.form.field.Time', {
         }
     },
 
-    /**
+    /**
      * @private
      * Handles a time being selected from the Time picker.
      */
@@ -415,4 +432,6 @@ Ext.define('Ext.form.field.Time', {
     }
 });
 
-
\ No newline at end of file +
+ +