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

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.Select");
  9. dojo.require("dojo.widget.ComboBox");
  10. dojo.require("dojo.widget.*");
  11. dojo.require("dojo.widget.html.stabile");
  12. dojo.widget.defineWidget("dojo.widget.Select", dojo.widget.ComboBox, {forceValidOption:true, setValue:function (value) {
  13. this.comboBoxValue.value = value;
  14. dojo.widget.html.stabile.setState(this.widgetId, this.getState(), true);
  15. this.onValueChanged(value);
  16. }, setLabel:function (value) {
  17. this.comboBoxSelectionValue.value = value;
  18. if (this.textInputNode.value != value) {
  19. this.textInputNode.value = value;
  20. }
  21. }, getLabel:function () {
  22. return this.comboBoxSelectionValue.value;
  23. }, getState:function () {
  24. return {value:this.getValue(), label:this.getLabel()};
  25. }, onKeyUp:function (evt) {
  26. this.setLabel(this.textInputNode.value);
  27. }, setState:function (state) {
  28. this.setValue(state.value);
  29. this.setLabel(state.label);
  30. }, setAllValues:function (value1, value2) {
  31. this.setLabel(value1);
  32. this.setValue(value2);
  33. }});