123456789101112131415161718192021222324252627 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: cogadmin
- //
- // (C) Copyright IBM Corp. 2005, 2010
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- //
- //
- // Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- // Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- //----------------------------------------------------------
- com.cognos.admin.ObjectFactory("com.cognos.admin.widget");
- com.cognos.admin.widget.MultiStateChkbox = function (tag,e,param) {
- this.tag = tag;
- this.tools = com.cognos.admin.util.Tools;
- this.event = new xEvent(e);
- this.tooltip;
- this.timeoutId;
- };
- com.cognos.admin.widget.MultiStateChkbox.VERSION = "0.1.0";
- com.cognos.admin.widget.MultiStateChkbox.prototype = {
- };
|