TimeField.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:5k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.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 null).
  22.      */
  23.     minValue : null,
  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 null).
  28.      */
  29.     maxValue : null,
  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(typeof this.minValue == "string"){
  80.             this.minValue = this.parseDate(this.minValue);
  81.         }
  82.         if(typeof this.maxValue == "string"){
  83.             this.maxValue = this.parseDate(this.maxValue);
  84.         }
  85.         if(!this.store){
  86.             var min = this.parseDate(this.minValue) || new Date(this.initDate).clearTime();
  87.             var max = this.parseDate(this.maxValue) || new Date(this.initDate).clearTime().add('mi', (24 * 60) - 1);
  88.             var times = [];
  89.             while(min <= max){
  90.                 times.push(min.dateFormat(this.format));
  91.                 min = min.add('mi', this.increment);
  92.             }
  93.             this.store = times;
  94.         }
  95.         Ext.form.TimeField.superclass.initComponent.call(this);
  96.     },
  97.     // inherited docs
  98.     getValue : function(){
  99.         var v = Ext.form.TimeField.superclass.getValue.call(this);
  100.         return this.formatDate(this.parseDate(v)) || '';
  101.     },
  102.     // inherited docs
  103.     setValue : function(value){
  104.         return Ext.form.TimeField.superclass.setValue.call(this, this.formatDate(this.parseDate(value)));
  105.     },
  106.     // private overrides
  107.     validateValue : Ext.form.DateField.prototype.validateValue,
  108.     parseDate : Ext.form.DateField.prototype.parseDate,
  109.     formatDate : Ext.form.DateField.prototype.formatDate,
  110.     // private
  111.     beforeBlur : function(){
  112.         var v = this.parseDate(this.getRawValue());
  113.         if(v){
  114.             this.setValue(v.dateFormat(this.format));
  115.         }
  116.         Ext.form.TimeField.superclass.beforeBlur.call(this);
  117.     }
  118.     /**
  119.      * @cfg {Boolean} grow @hide
  120.      */
  121.     /**
  122.      * @cfg {Number} growMin @hide
  123.      */
  124.     /**
  125.      * @cfg {Number} growMax @hide
  126.      */
  127.     /**
  128.      * @hide
  129.      * @method autoSize
  130.      */
  131. });
  132. Ext.reg('timefield', Ext.form.TimeField);