WF activity: losing the user's choice via radio button
Hello,
In an activity of my workflow, I've set two routes (routing tab), Reject or Continue.
So a radio button appears automatically in the activity, letting the user choices what he wants to do.
If he chooses "Reject", I make some validation on few variables and throw an error message in an exception if it is not ok.
The problem is after the user gets the error message, the radio button is reset to its default value "Continue". It is not user-friendly, it should keep the last user's choice.
I have implemented my validation by overriding the NmWorkItemService as it was said to me in this post : http://communities.ptc.com/thread/35290
I have noticed that if the exception was thrown from a call in an expression in the transition tab, it was ok, the page was not reloaded, the user's choice was kept. But I can't implement my validation this way because I need to check the "comment" textbox wrapped in the NmCommandBean object, so I need to override the NmWorkItemService.

