When overriding Default Pages as described in Server Guide (http://developer.axonivy.com/doc/5.0.latest/ServerGuideHtml/ivy.server.concepts.introduction.html) I have access to ID of the ended task (endedTaskId Parameter).

In my use case I need special end pages for some tasks. So I prefer using a individual JSP end page for each task. Is is possible to get the ID of the ended task in the JSP, too?

asked 28.05.2015 at 10:48

Timo%20Rupp's gravatar image

Timo Rupp
(suspended)
accept rate: 100%


Information provided by Dominik from Ivyteam:

You can get it by Request Parameter 'taskId'. This parameter is always provided when redirecting to a WebPage. Use it like this:

<%= request.getParameter("taskId") %>

Additionally you can use the API to get the ID and other data:

<%= ivy.wf.getCurrentTask().getId() %>
<%= ivy.wf.getCurrentTask().getState() %>
link

answered 28.05.2015 at 10:53

Timo%20Rupp's gravatar image

Timo Rupp
(suspended)
accept rate: 100%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×7

Asked: 28.05.2015 at 10:48

Seen: 2,225 times

Last updated: 28.05.2015 at 10:53