Article

Form Field Visibility after a Workflow Task is Claimed

Author Info

11 July 2007 - 12:57am
Submitted by: rduym

article
Reads:

1242

Score:
0
0
 
Comments:

0

Problem

How can I make a form field visible only after a workflow task is claimed?

Solution

You can do this with a couple of lines of JavaScript. The trick is that until a task is claimed the action buttons like approve, deny, etc., are not present.

So, you can test for the presence of the approve buttons (they can be top, bottom, or both), and if they are not present, you can execute some form script, such as hiding a field. When the form is loaded, the field will show up for a second or so, but then it will be hidden once the script is executed.

Add this code to an onload event of one of the fields:

if (!dojo.byId("ApprovalAction") &&  !dojo.byId("ApprovalAction1") {
  // task is not claimed
  form.hide("afieldname");
}


Author Info

11 July 2007 - 12:57am
Submitted by: rduym




User Comments

© 2009 Novell, Inc. All Rights Reserved.