DatasetScheduleView.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Licensed Materials - Property of IBM
  3. *
  4. * IBM Cognos Products: SHARE
  5. *
  6. * (C) Copyright IBM Corp. 2016
  7. *
  8. * US Government Users Restricted Rights - Use, duplication or disclosure
  9. * restricted by GSA ADP Schedule Contract with IBM Corp.
  10. */
  11. define([
  12. 'bi/schedule/views/ScheduleView'
  13. ],
  14. function(View) {
  15. 'use strict';
  16. var datasetScheduleView = View.extend({
  17. /**
  18. * @constructor
  19. */
  20. init: function(options) {
  21. options.showOptions = false;
  22. datasetScheduleView.inherited('init', this, arguments);
  23. this.options = {
  24. delivery: {
  25. save: {
  26. notify: false
  27. }
  28. },
  29. outputLocale: [this.defaultLocale],
  30. pdf:{},
  31. burst:false,
  32. outputFormat: ['dataSet']
  33. };
  34. }
  35. });
  36. return datasetScheduleView;
  37. });