Is it possible to lock the choice in a drop-down menu after it is made, so when the document is saved and then opened again, the choice cannot be changed?
LC ES2 9.0.0, Win 7
Solved! Go to Solution.
Views
Replies
Total Likes
You could put something like the following on the initialize event of the field - the field will remain open until the file is saved with a value in the field, if there is no value the field will remain open when the file is saved and opened.
//form1.subMain.DropDownList1::initialize - (JavaScript, client)
if (!this.isNull){
this.access = "readOnly";
}
Views
Replies
Total Likes
Sure ...just lock the field on exit.
Views
Replies
Total Likes
You could put something like the following on the initialize event of the field - the field will remain open until the file is saved with a value in the field, if there is no value the field will remain open when the file is saved and opened.
//form1.subMain.DropDownList1::initialize - (JavaScript, client)
if (!this.isNull){
this.access = "readOnly";
}
Views
Replies
Total Likes
Exactly what I was looking for. Thanks!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies