The JsfWorkflowUi does not show all tasks of a user. The tasklist seems to be limited to 25 tasks. How can the user see all Tasks?

// original german post: Hallo Ivyteam, ich setze das JsfWfUi ein. Es zeigt nur einen Teil der Aufgaben des angemeldeten Users an(z.B. 25 von 44 Tasks mit State=4 und EndTimeStamp = NULL in der Tabelle IWA_Task). Wie kann ich Abhilfe schaffen? R.Schmid

asked 25.11.2013 at 15:44

Richard%20Schmid's gravatar image

Richard Schmid
(suspended)
accept rate: 25%

edited 26.11.2013 at 10:05

Reguel%20Wermelinger's gravatar image

Reguel Werme... ♦♦
9.4k31958


The number of shown Tasks is set by a Parameter in the Dialog Tasklist in JsfWfUi:

IQueryResult queryResult  = ivy.session.findWorkTasks(null, PropertyOrder.create(TaskProperty.ID, OrderDirection.DESCENDING), 
      0, 25, true, EnumSet.of(TaskState.SUSPENDED, TaskState.RESUMED, TaskState.PARKED));

Replace 25 by -1

link

answered 25.11.2013 at 16:34

Richard%20Schmid's gravatar image

Richard Schmid
(suspended)
accept rate: 25%

edited 26.11.2013 at 09:39

Reguel%20Wermelinger's gravatar image

Reguel Werme... ♦♦
9.4k31958

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:

×4

Asked: 25.11.2013 at 15:44

Seen: 2,188 times

Last updated: 26.11.2013 at 10:05