action.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| BI and PM: prmt
  5. *| (C) Copyright IBM Corp. 2002, 2011
  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. /**
  13. @fileOverview Report Actions
  14. @namespace Holds constants for report manipulation.
  15. */
  16. cognos.Report.Action = {};
  17. /**
  18. Go back one prompt page.
  19. @constant
  20. @static
  21. */
  22. cognos.Report.Action.BACK = "back";
  23. /**
  24. Cancel report and go back to previous page.
  25. @constant
  26. @static
  27. */
  28. cognos.Report.Action.CANCEL = "cancel";
  29. /**
  30. Submit parameter values and skip all remaining optional prompts and prompt pages.
  31. @constant
  32. @static
  33. */
  34. cognos.Report.Action.FINISH = "finish";
  35. /**
  36. Submit parameter values and go to next prompt page.
  37. @constant
  38. @static
  39. */
  40. cognos.Report.Action.NEXT = "next";
  41. /**
  42. Re-prompt for values / show first prompt pages.
  43. @constant
  44. @static
  45. */
  46. cognos.Report.Action.REPROMPT = "reprompt";
  47. /**
  48. Go to the next page.
  49. @constant
  50. @static
  51. */
  52. cognos.Report.Action.NEXTPAGE = "nextPage";
  53. /**
  54. Go back one page.
  55. @constant
  56. @static
  57. */
  58. cognos.Report.Action.PREVIOUSPAGE = "previousPage";