TimeField.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:6k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.form.TimeField
  3.  * @extends Ext.form.ComboBox
  4.  * Provides a time input field with a time dropdown and automatic time validation.  Example usage:
  5.  * <pre><code>
  6. new Ext.form.TimeField({
  7.     minValue: '9:00 AM',
  8.     maxValue: '6:00 PM',
  9.     increment: 30
  10. });
  11. </code></pre>
  12.  * @constructor
  13.  * Create a new TimeField
  14.  * @param {Object} config
  15.  * @xtype timefield
  16.  */
  17. Ext.form.TimeField = Ext.extend(Ext.form.ComboBox, {
  18.     /**
  19.      * @cfg {Date/String} minValue
  20.      * The minimum allowed time. Can be either a Javascript date object with a valid time value or a string 
  21.      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to undefined).
  22.      */
  23.     minValue : undefined,
  24.     /**
  25.      * @cfg {Date/String} maxValue
  26.      * The maximum allowed time. Can be either a Javascript date object with a valid time value or a string 
  27.      * time in a valid format -- see {@link #format} and {@link #altFormats} (defaults to undefined).
  28.      */
  29.     maxValue : undefined,
  30.     /**
  31.      * @cfg {String} minText
  32.      * The error text to display when the date in the cell is before minValue (defaults to
  33.      * 'The time in this field must be equal to or after {0}').
  34.      */
  35.     minText : "The time in this field must be equal to or after {0}",
  36.     /**
  37.      * @cfg {String} maxText
  38.      * The error text to display when the time is after maxValue (defaults to
  39.      * 'The time in this field must be equal to or before {0}').
  40.      */
  41.     maxText : "The time in this field must be equal to or before {0}",
  42.     /**
  43.      * @cfg {String} invalidText
  44.      * The error text to display when the time in the field is invalid (defaults to
  45.      * '{value} is not a valid time').
  46.      */
  47.     invalidText : "{0} is not a valid time",
  48.     /**
  49.      * @cfg {String} format
  50.      * The default time format string which can be overriden for localization support.  The format must be
  51.      * valid according to {@link Date#parseDate} (defaults to 'g:i A', e.g., '3:15 PM').  For 24-hour time
  52.      * format try 'H:i' instead.
  53.      */
  54.     format : "g:i A",
  55.     /**
  56.      * @cfg {String} altFormats
  57.      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
  58.      * 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').
  59.      */
  60.     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",
  61.     /**
  62.      * @cfg {Number} increment
  63.      * The number of minutes between each time value in the list (defaults to 15).
  64.      */
  65.     increment: 15,
  66.     // private override
  67.     mode: 'local',
  68.     // private override
  69.     triggerAction: 'all',
  70.     // private override
  71.     typeAhead: false,
  72.     
  73.     // private - This is the date to use when generating time values in the absence of either minValue
  74.     // or maxValue.  Using the current date causes DST issues on DST boundary dates, so this is an 
  75.     // arbitrary "safe" date that can be any date aside from DST boundary dates.
  76.     initDate: '1/1/2008',
  77.     // private
  78.     initComponent : function(){
  79.         if(Ext.isDefined(this.minValue)){
  80.             this.setMinValue(this.minValue, true);
  81.         }
  82.         if(Ext.isDefined(this.maxValue)){
  83.             this.setMaxValue(this.maxValue, true);
  84.         }
  85.         if(!this.store){
  86.             this.generateStore(true);
  87.         }
  88.         Ext.form.TimeField.superclass.initComponent.call(this);
  89.     },
  90.     
  91.     /**
  92.      * Replaces any existing {@link #minValue} with the new time and refreshes the store.
  93.      * @param {Date/String} value The minimum time that can be selected
  94.      */
  95.     setMinValue: function(value, /* private */ initial){
  96.         this.setLimit(value, true, initial);
  97.         return this;
  98.     },
  99.     /**
  100.      * Replaces any existing {@link #maxValue} with the new time and refreshes the store.
  101.      * @param {Date/String} value The maximum time that can be selected
  102.      */
  103.     setMaxValue: function(value, /* private */ initial){
  104.         this.setLimit(value, false, initial);
  105.         return this;
  106.     },
  107.     
  108.     // private
  109.     generateStore: function(initial){
  110.         var min = this.minValue || new Date(this.initDate).clearTime(),
  111.             max = this.maxValue || new Date(this.initDate).clearTime().add('mi', (24 * 60) - 1),
  112.             times = [];
  113.             
  114.         while(min <= max){
  115.             times.push(min.dateFormat(this.format));
  116.             min = min.add('mi', this.increment);
  117.         }
  118.         this.bindStore(times, initial);
  119.     },
  120.     // private
  121.     setLimit: function(value, isMin, initial){
  122.         var d;
  123.         if(Ext.isString(value)){
  124.             d = this.parseDate(value);
  125.         }else if(Ext.isDate(value)){
  126.             d = value;
  127.         }
  128.         if(d){
  129.             var val = new Date(this.initDate).clearTime();
  130.             val.setHours(d.getHours(), d.getMinutes(), isMin ? 0 : 59, 0);
  131.             this[isMin ? 'minValue' : 'maxValue'] = val;
  132.             if(!initial){
  133.                 this.generateStore();
  134.             }
  135.         }
  136.     },
  137.     
  138.     // inherited docs
  139.     getValue : function(){
  140.         var v = Ext.form.TimeField.superclass.getValue.call(this);
  141.         return this.formatDate(this.parseDate(v)) || '';
  142.     },
  143.     // inherited docs
  144.     setValue : function(value){
  145.         return Ext.form.TimeField.superclass.setValue.call(this, this.formatDate(this.parseDate(value)));
  146.     },
  147.     // private overrides
  148.     validateValue : Ext.form.DateField.prototype.validateValue,
  149.     parseDate : Ext.form.DateField.prototype.parseDate,
  150.     formatDate : Ext.form.DateField.prototype.formatDate,
  151.     // private
  152.     beforeBlur : function(){
  153.         var v = this.parseDate(this.getRawValue());
  154.         if(v){
  155.             this.setValue(v.dateFormat(this.format));
  156.         }
  157.         Ext.form.TimeField.superclass.beforeBlur.call(this);
  158.     }
  159.     /**
  160.      * @cfg {Boolean} grow @hide
  161.      */
  162.     /**
  163.      * @cfg {Number} growMin @hide
  164.      */
  165.     /**
  166.      * @cfg {Number} growMax @hide
  167.      */
  168.     /**
  169.      * @hide
  170.      * @method autoSize
  171.      */
  172. });
  173. Ext.reg('timefield', Ext.form.TimeField);