1234567891011121314151617181920212223242526272829 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Content Explorer
- *| (C) Copyright IBM Corp. 2018, 2019
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define(['../../../lib/@waca/core-client/js/core-client/ui/core/Class'], function (BaseClass) {
- var ActionHandler = BaseClass.extend({
- createPDF: function createPDF(context, pageSize, printFilters) {
- var printFeature = context.getCurrentContentView().getDashboardApi().getFeature('Print');
- var pageOptions = {
- pageSize: pageSize,
- printFilters: printFilters
- };
- var id = context.getCurrentContentView().getDashboardApi().getCanvas().getContent().getId();
- printFeature.print(id, context, pageOptions);
- }
- });
- return ActionHandler;
- });
- //# sourceMappingURL=GeneratePDF.js.map
|