X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Time2.html diff --git a/docs/source/Time2.html b/docs/source/Time2.html index c12966e2..26f9b20f 100644 --- a/docs/source/Time2.html +++ b/docs/source/Time2.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.picker.Time
  * @extends Ext.view.BoundList
  * <p>A time picker which provides a list of times from which to choose. This is used by the
@@ -32,25 +49,25 @@ Ext.define('Ext.picker.Time', {
     alias: 'widget.timepicker',
     requires: ['Ext.data.Store', 'Ext.Date'],
 
-    /**
+    /**
      * @cfg {Date} minValue
      * The minimum time to be shown in the list of times. This must be a Date object (only the time fields
      * will be used); no parsing of String values will be done. Defaults to undefined.
      */
 
-    /**
+    /**
      * @cfg {Date} maxValue
      * The maximum time to be shown in the list of times. This must be a Date object (only the time fields
      * will be used); no parsing of String values will be done. Defaults to undefined.
      */
 
-    /**
+    /**
      * @cfg {Number} increment
      * The number of minutes between each time value in the list (defaults to 15).
      */
     increment: 15,
 
-    /**
+    /**
      * @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
@@ -58,14 +75,14 @@ Ext.define('Ext.picker.Time', {
      */
     format : "g:i A",
 
-    /**
+    /**
      * @hide
      * The field in the implicitly-generated Model objects that gets displayed in the list. This is
      * an internal field name only and is not useful to change via config.
      */
     displayField: 'disp',
 
-    /**
+    /**
      * @private
      * Year, month, and day that all times will be normalized into internally.
      */
@@ -73,7 +90,7 @@ Ext.define('Ext.picker.Time', {
 
     componentCls: Ext.baseCSSPrefix + 'timepicker',
 
-    /**
+    /**
      * @hide
      */
     loadingText: '',
@@ -94,7 +111,7 @@ Ext.define('Ext.picker.Time', {
         this.callParent();
     },
 
-    /**
+    /**
      * Set the {@link #minValue} and update the list of available times. This must be a Date
      * object (only the time fields will be used); no parsing of String values will be done.
      * @param {Date} value
@@ -104,7 +121,7 @@ Ext.define('Ext.picker.Time', {
         this.updateList();
     },
 
-    /**
+    /**
      * Set the {@link #maxValue} and update the list of available times. This must be a Date
      * object (only the time fields will be used); no parsing of String values will be done.
      * @param {Date} value
@@ -114,7 +131,7 @@ Ext.define('Ext.picker.Time', {
         this.updateList();
     },
 
-    /**
+    /**
      * @private
      * Sets the year/month/day of the given Date object to the {@link #initDate}, so that only
      * the time fields are significant. This makes values suitable for time comparison.
@@ -126,7 +143,7 @@ Ext.define('Ext.picker.Time', {
         return date;
     },
 
-    /**
+    /**
      * Update the list of available times in the list to be constrained within the
      * {@link #minValue} and {@link #maxValue}.
      */
@@ -141,7 +158,7 @@ Ext.define('Ext.picker.Time', {
         });
     },
 
-    /**
+    /**
      * @private
      * Creates the internal {@link Ext.data.Store} that contains the available times. The store
      * is loaded with all possible times, and it is later filtered to hide those times outside
@@ -169,4 +186,6 @@ Ext.define('Ext.picker.Time', {
     }
 
 });
-
\ No newline at end of file +
+ +