12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Licensed Materials - Property of IBM
- *
- * IBM Cognos Products: SHARE
- *
- * (C) Copyright IBM Corp. 2016
- *
- * US Government Users Restricted Rights - Use, duplication or disclosure
- * restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([
- 'bi/schedule/views/ScheduleView'
- ],
- function(View) {
- 'use strict';
- var datasetScheduleView = View.extend({
- /**
- * @constructor
- */
- init: function(options) {
- options.showOptions = false;
-
- datasetScheduleView.inherited('init', this, arguments);
-
- this.options = {
- delivery: {
- save: {
- notify: false
- }
- },
- outputLocale: [this.defaultLocale],
- pdf:{},
- burst:false,
- outputFormat: ['dataSet']
- };
- }
- });
- return datasetScheduleView;
- });
|