DateTextbox.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.widget.DateTextbox");
  9. dojo.require("dojo.widget.ValidationTextbox");
  10. dojo.require("dojo.date.format");
  11. dojo.require("dojo.validate.datetime");
  12. dojo.widget.defineWidget("dojo.widget.DateTextbox", dojo.widget.ValidationTextbox, {displayFormat:"", formatLength:"short", mixInProperties:function (localProperties) {
  13. dojo.widget.DateTextbox.superclass.mixInProperties.apply(this, arguments);
  14. if (localProperties.format) {
  15. this.flags.format = localProperties.format;
  16. }
  17. }, isValid:function () {
  18. if (this.flags.format) {
  19. dojo.deprecated("dojo.widget.DateTextbox", "format attribute is deprecated; use displayFormat or formatLength instead", "0.5");
  20. return dojo.validate.isValidDate(this.textbox.value, this.flags.format);
  21. }
  22. return dojo.date.parse(this.textbox.value, {formatLength:this.formatLength, selector:"dateOnly", locale:this.lang, datePattern:this.displayFormat});
  23. }});
  24. dojo.widget.defineWidget("dojo.widget.TimeTextbox", dojo.widget.ValidationTextbox, {displayFormat:"", formatLength:"short", mixInProperties:function (localProperties) {
  25. dojo.widget.TimeTextbox.superclass.mixInProperties.apply(this, arguments);
  26. if (localProperties.format) {
  27. this.flags.format = localProperties.format;
  28. }
  29. if (localProperties.amsymbol) {
  30. this.flags.amSymbol = localProperties.amsymbol;
  31. }
  32. if (localProperties.pmsymbol) {
  33. this.flags.pmSymbol = localProperties.pmsymbol;
  34. }
  35. }, isValid:function () {
  36. if (this.flags.format) {
  37. dojo.deprecated("dojo.widget.TimeTextbox", "format attribute is deprecated; use displayFormat or formatLength instead", "0.5");
  38. return dojo.validate.isValidTime(this.textbox.value, this.flags);
  39. }
  40. return dojo.date.parse(this.textbox.value, {formatLength:this.formatLength, selector:"timeOnly", locale:this.lang, timePattern:this.displayFormat});
  41. }});