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

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.form.DateField
  9.  * @extends Ext.form.TriggerField
  10.  * Provides a date input field with a {@link Ext.DatePicker} dropdown and automatic date validation.
  11.  * @constructor
  12.  * Create a new DateField
  13.  * @param {Object} config
  14.  * @xtype datefield
  15.  */
  16. Ext.form.DateField = Ext.extend(Ext.form.TriggerField,  {
  17.     /**
  18.      * @cfg {String} format
  19.      * The default date format string which can be overriden for localization support.  The format must be
  20.      * valid according to {@link Date#parseDate} (defaults to <tt>'m/d/Y'</tt>).
  21.      */
  22.     format : "m/d/Y",
  23.     /**
  24.      * @cfg {String} altFormats
  25.      * Multiple date formats separated by "<tt>|</tt>" to try when parsing a user input value and it
  26.      * does not match the defined format (defaults to
  27.      * <tt>'m/d/Y|n/j/Y|n/j/y|m/j/y|n/d/y|m/j/Y|n/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d'</tt>).
  28.      */
  29.     altFormats : "m/d/Y|n/j/Y|n/j/y|m/j/y|n/d/y|m/j/Y|n/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d",
  30.     /**
  31.      * @cfg {String} disabledDaysText
  32.      * The tooltip to display when the date falls on a disabled day (defaults to <tt>'Disabled'</tt>)
  33.      */
  34.     disabledDaysText : "Disabled",
  35.     /**
  36.      * @cfg {String} disabledDatesText
  37.      * The tooltip text to display when the date falls on a disabled date (defaults to <tt>'Disabled'</tt>)
  38.      */
  39.     disabledDatesText : "Disabled",
  40.     /**
  41.      * @cfg {String} minText
  42.      * The error text to display when the date in the cell is before <tt>{@link #minValue}</tt> (defaults to
  43.      * <tt>'The date in this field must be after {minValue}'</tt>).
  44.      */
  45.     minText : "The date in this field must be equal to or after {0}",
  46.     /**
  47.      * @cfg {String} maxText
  48.      * The error text to display when the date in the cell is after <tt>{@link #maxValue}</tt> (defaults to
  49.      * <tt>'The date in this field must be before {maxValue}'</tt>).
  50.      */
  51.     maxText : "The date in this field must be equal to or before {0}",
  52.     /**
  53.      * @cfg {String} invalidText
  54.      * The error text to display when the date in the field is invalid (defaults to
  55.      * <tt>'{value} is not a valid date - it must be in the format {format}'</tt>).
  56.      */
  57.     invalidText : "{0} is not a valid date - it must be in the format {1}",
  58.     /**
  59.      * @cfg {String} triggerClass
  60.      * An additional CSS class used to style the trigger button.  The trigger will always get the
  61.      * class <tt>'x-form-trigger'</tt> and <tt>triggerClass</tt> will be <b>appended</b> if specified
  62.      * (defaults to <tt>'x-form-date-trigger'</tt> which displays a calendar icon).
  63.      */
  64.     triggerClass : 'x-form-date-trigger',
  65.     /**
  66.      * @cfg {Boolean} showToday
  67.      * <tt>false</tt> to hide the footer area of the DatePicker containing the Today button and disable
  68.      * the keyboard handler for spacebar that selects the current date (defaults to <tt>true</tt>).
  69.      */
  70.     showToday : true,
  71.     /**
  72.      * @cfg {Date/String} minValue
  73.      * The minimum allowed date. Can be either a Javascript date object or a string date in a
  74.      * valid format (defaults to null).
  75.      */
  76.     /**
  77.      * @cfg {Date/String} maxValue
  78.      * The maximum allowed date. Can be either a Javascript date object or a string date in a
  79.      * valid format (defaults to null).
  80.      */
  81.     /**
  82.      * @cfg {Array} disabledDays
  83.      * An array of days to disable, 0 based (defaults to null). Some examples:<pre><code>
  84. // disable Sunday and Saturday:
  85. disabledDays:  [0, 6]
  86. // disable weekdays:
  87. disabledDays: [1,2,3,4,5]
  88.      * </code></pre>
  89.      */
  90.     /**
  91.      * @cfg {Array} disabledDates
  92.      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
  93.      * expression so they are very powerful. Some examples:<pre><code>
  94. // disable these exact dates:
  95. disabledDates: ["03/08/2003", "09/16/2003"]
  96. // disable these days for every year:
  97. disabledDates: ["03/08", "09/16"]
  98. // only match the beginning (useful if you are using short years):
  99. disabledDates: ["^03/08"]
  100. // disable every day in March 2006:
  101. disabledDates: ["03/../2006"]
  102. // disable every day in every March:
  103. disabledDates: ["^03"]
  104.      * </code></pre>
  105.      * Note that the format of the dates included in the array should exactly match the {@link #format} config.
  106.      * In order to support regular expressions, if you are using a {@link #format date format} that has "." in
  107.      * it, you will have to escape the dot when restricting dates. For example: <tt>["03\.08\.03"]</tt>.
  108.      */
  109.     /**
  110.      * @cfg {String/Object} autoCreate
  111.      * A {@link Ext.DomHelper DomHelper element specification object}, or <tt>true</tt> for the default element
  112.      * specification object:<pre><code>
  113.      * autoCreate: {tag: "input", type: "text", size: "10", autocomplete: "off"}
  114.      * </code></pre>
  115.      */
  116.     // private
  117.     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
  118.     initComponent : function(){
  119.         Ext.form.DateField.superclass.initComponent.call(this);
  120.         this.addEvents(
  121.             /**
  122.              * @event select
  123.              * Fires when a date is selected via the date picker.
  124.              * @param {Ext.form.DateField} this
  125.              * @param {Date} date The date that was selected
  126.              */
  127.             'select'
  128.         );
  129.         if(Ext.isString(this.minValue)){
  130.             this.minValue = this.parseDate(this.minValue);
  131.         }
  132.         if(Ext.isString(this.maxValue)){
  133.             this.maxValue = this.parseDate(this.maxValue);
  134.         }
  135.         this.disabledDatesRE = null;
  136.         this.initDisabledDays();
  137.     },
  138.     // private
  139.     initDisabledDays : function(){
  140.         if(this.disabledDates){
  141.             var dd = this.disabledDates,
  142.                 len = dd.length - 1, 
  143.                 re = "(?:";
  144.                 
  145.             Ext.each(dd, function(d, i){
  146.                 re += Ext.isDate(d) ? '^' + Ext.escapeRe(d.dateFormat(this.format)) + '$' : dd[i];
  147.                 if(i != len){
  148.                     re += '|';
  149.                 }
  150.             }, this);
  151.             this.disabledDatesRE = new RegExp(re + ')');
  152.         }
  153.     },
  154.     /**
  155.      * Replaces any existing disabled dates with new values and refreshes the DatePicker.
  156.      * @param {Array} disabledDates An array of date strings (see the <tt>{@link #disabledDates}</tt> config
  157.      * for details on supported values) used to disable a pattern of dates.
  158.      */
  159.     setDisabledDates : function(dd){
  160.         this.disabledDates = dd;
  161.         this.initDisabledDays();
  162.         if(this.menu){
  163.             this.menu.picker.setDisabledDates(this.disabledDatesRE);
  164.         }
  165.     },
  166.     /**
  167.      * Replaces any existing disabled days (by index, 0-6) with new values and refreshes the DatePicker.
  168.      * @param {Array} disabledDays An array of disabled day indexes. See the <tt>{@link #disabledDays}</tt>
  169.      * config for details on supported values.
  170.      */
  171.     setDisabledDays : function(dd){
  172.         this.disabledDays = dd;
  173.         if(this.menu){
  174.             this.menu.picker.setDisabledDays(dd);
  175.         }
  176.     },
  177.     /**
  178.      * Replaces any existing <tt>{@link #minValue}</tt> with the new value and refreshes the DatePicker.
  179.      * @param {Date} value The minimum date that can be selected
  180.      */
  181.     setMinValue : function(dt){
  182.         this.minValue = (Ext.isString(dt) ? this.parseDate(dt) : dt);
  183.         if(this.menu){
  184.             this.menu.picker.setMinDate(this.minValue);
  185.         }
  186.     },
  187.     /**
  188.      * Replaces any existing <tt>{@link #maxValue}</tt> with the new value and refreshes the DatePicker.
  189.      * @param {Date} value The maximum date that can be selected
  190.      */
  191.     setMaxValue : function(dt){
  192.         this.maxValue = (Ext.isString(dt) ? this.parseDate(dt) : dt);
  193.         if(this.menu){
  194.             this.menu.picker.setMaxDate(this.maxValue);
  195.         }
  196.     },
  197.     // private
  198.     validateValue : function(value){
  199.         value = this.formatDate(value);
  200.         if(!Ext.form.DateField.superclass.validateValue.call(this, value)){
  201.             return false;
  202.         }
  203.         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
  204.              return true;
  205.         }
  206.         var svalue = value;
  207.         value = this.parseDate(value);
  208.         if(!value){
  209.             this.markInvalid(String.format(this.invalidText, svalue, this.format));
  210.             return false;
  211.         }
  212.         var time = value.getTime();
  213.         if(this.minValue && time < this.minValue.getTime()){
  214.             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
  215.             return false;
  216.         }
  217.         if(this.maxValue && time > this.maxValue.getTime()){
  218.             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
  219.             return false;
  220.         }
  221.         if(this.disabledDays){
  222.             var day = value.getDay();
  223.             for(var i = 0; i < this.disabledDays.length; i++) {
  224.                 if(day === this.disabledDays[i]){
  225.                     this.markInvalid(this.disabledDaysText);
  226.                     return false;
  227.                 }
  228.             }
  229.         }
  230.         var fvalue = this.formatDate(value);
  231.         if(this.disabledDatesRE && this.disabledDatesRE.test(fvalue)){
  232.             this.markInvalid(String.format(this.disabledDatesText, fvalue));
  233.             return false;
  234.         }
  235.         return true;
  236.     },
  237.     // private
  238.     // Provides logic to override the default TriggerField.validateBlur which just returns true
  239.     validateBlur : function(){
  240.         return !this.menu || !this.menu.isVisible();
  241.     },
  242.     /**
  243.      * Returns the current date value of the date field.
  244.      * @return {Date} The date value
  245.      */
  246.     getValue : function(){
  247.         return this.parseDate(Ext.form.DateField.superclass.getValue.call(this)) || "";
  248.     },
  249.     /**
  250.      * Sets the value of the date field.  You can pass a date object or any string that can be
  251.      * parsed into a valid date, using <tt>{@link #format}</tt> as the date format, according
  252.      * to the same rules as {@link Date#parseDate} (the default format used is <tt>"m/d/Y"</tt>).
  253.      * <br />Usage:
  254.      * <pre><code>
  255. //All of these calls set the same date value (May 4, 2006)
  256. //Pass a date object:
  257. var dt = new Date('5/4/2006');
  258. dateField.setValue(dt);
  259. //Pass a date string (default format):
  260. dateField.setValue('05/04/2006');
  261. //Pass a date string (custom format):
  262. dateField.format = 'Y-m-d';
  263. dateField.setValue('2006-05-04');
  264. </code></pre>
  265.      * @param {String/Date} date The date or valid date string
  266.      * @return {Ext.form.Field} this
  267.      */
  268.     setValue : function(date){
  269.         return Ext.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
  270.     },
  271.     // private
  272.     parseDate : function(value){
  273.         if(!value || Ext.isDate(value)){
  274.             return value;
  275.         }
  276.         var v = Date.parseDate(value, this.format);
  277.         if(!v && this.altFormats){
  278.             if(!this.altFormatsArray){
  279.                 this.altFormatsArray = this.altFormats.split("|");
  280.             }
  281.             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
  282.                 v = Date.parseDate(value, this.altFormatsArray[i]);
  283.             }
  284.         }
  285.         return v;
  286.     },
  287.     // private
  288.     onDestroy : function(){
  289. Ext.destroy(this.menu);
  290.         Ext.form.DateField.superclass.onDestroy.call(this);
  291.     },
  292.     // private
  293.     formatDate : function(date){
  294.         return Ext.isDate(date) ? date.dateFormat(this.format) : date;
  295.     },
  296.     /**
  297.      * @method onTriggerClick
  298.      * @hide
  299.      */
  300.     // private
  301.     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
  302.     onTriggerClick : function(){
  303.         if(this.disabled){
  304.             return;
  305.         }
  306.         if(this.menu == null){
  307.             this.menu = new Ext.menu.DateMenu({
  308.                 hideOnClick: false
  309.             });
  310.         }
  311.         this.onFocus();
  312.         Ext.apply(this.menu.picker,  {
  313.             minDate : this.minValue,
  314.             maxDate : this.maxValue,
  315.             disabledDatesRE : this.disabledDatesRE,
  316.             disabledDatesText : this.disabledDatesText,
  317.             disabledDays : this.disabledDays,
  318.             disabledDaysText : this.disabledDaysText,
  319.             format : this.format,
  320.             showToday : this.showToday,
  321.             minText : String.format(this.minText, this.formatDate(this.minValue)),
  322.             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
  323.         });
  324.         this.menu.picker.setValue(this.getValue() || new Date());
  325.         this.menu.show(this.el, "tl-bl?");
  326.         this.menuEvents('on');
  327.     },
  328.     
  329.     //private
  330.     menuEvents: function(method){
  331.         this.menu[method]('select', this.onSelect, this);
  332.         this.menu[method]('hide', this.onMenuHide, this);
  333.         this.menu[method]('show', this.onFocus, this);
  334.     },
  335.     
  336.     onSelect: function(m, d){
  337.         this.setValue(d);
  338.         this.fireEvent('select', this, d);
  339.         this.menu.hide();
  340.     },
  341.     
  342.     onMenuHide: function(){
  343.         this.focus(false, 60);
  344.         this.menuEvents('un');
  345.     },
  346.     // private
  347.     beforeBlur : function(){
  348.         var v = this.parseDate(this.getRawValue());
  349.         if(v){
  350.             this.setValue(v);
  351.         }
  352.     }
  353.     /**
  354.      * @cfg {Boolean} grow @hide
  355.      */
  356.     /**
  357.      * @cfg {Number} growMin @hide
  358.      */
  359.     /**
  360.      * @cfg {Number} growMax @hide
  361.      */
  362.     /**
  363.      * @hide
  364.      * @method autoSize
  365.      */
  366. });
  367. Ext.reg('datefield', Ext.form.DateField);