ExportToExcel2007DataAction.js 702 B

123456789101112131415161718192021222324
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2012, 2013
  6. *|
  7. *| US Government Users Restricted Rights - Use, duplication or
  8. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *|
  10. *+------------------------------------------------------------------------+
  11. */
  12. function ExportToExcel2007DataAction()
  13. {
  14. //this.m_format = "spreadsheetML";
  15. this.m_format = "xlsxData";
  16. }
  17. ExportToExcel2007DataAction.prototype = new ExportFromIframeAction();
  18. ExportToExcel2007DataAction.prototype.getWindowTitle = function()
  19. {
  20. return RV_RES.RV_EXCEL_2007_DATA;
  21. };