MultiStateChkbox.js 848 B

123456789101112131415161718192021222324252627
  1. // Licensed Materials - Property of IBM
  2. //
  3. // IBM Cognos Products: cogadmin
  4. //
  5. // (C) Copyright IBM Corp. 2005, 2010
  6. //
  7. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. //
  9. //
  10. // Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  11. // Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  12. //----------------------------------------------------------
  13. com.cognos.admin.ObjectFactory("com.cognos.admin.widget");
  14. com.cognos.admin.widget.MultiStateChkbox = function (tag,e,param) {
  15. this.tag = tag;
  16. this.tools = com.cognos.admin.util.Tools;
  17. this.event = new xEvent(e);
  18. this.tooltip;
  19. this.timeoutId;
  20. };
  21. com.cognos.admin.widget.MultiStateChkbox.VERSION = "0.1.0";
  22. com.cognos.admin.widget.MultiStateChkbox.prototype = {
  23. };