- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Though I use different approach myself for this kind of scenario.....here is one easy way you can try.
When the userA submits the form and emails it to the next....userB when open the form in his/her email I guess you control the display of the so called "Submit" button based on some value/logic isn’t it?
If yes I would use the same value/logic in making the fields read-only.
Here is how I would add my JS to each field that you want to make read-only after submit.
In docReady event of each field that you want to lock down.........
// replace "submitButton" with actula SOMexpression for the submit button.
if (submitButton.presence == "hidden") {
this.access = "protected";
}
Good Luck,
Views
Replies
0 Likes
Total Likes