123456789101112131415161718192021222324252627282930 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: pps
- //
- // (C) Copyright IBM Corp. 2005, 2017
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- // This forms the javascript functions used for the action panes of
- // PowerPlay Studio.
- // The functions handle any minor browser differences.
- function commonActionPaneInit() {
- }
- function InputKeypress(event)
- {
- var eventM = new eventManager(event);
- if ("13" == eventM.theEvent.keyCode) return false;
- }
- function disableButton(button) {
- button.style.display = "none";
- button.nextSibling.style.display = "block";
- }
- function enableButton(button) {
- button.style.display = "block";
- button.nextSibling.style.display = "none";
- }
|