Article
article
Reads:
1242
Score:
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");
}





0