These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

How lock several chek boxes and combo boxes after submit form ?

pirous
Registered: Aug 19 2010
Posts: 2
Answered

How lock several chek boxes and combo boxes after submit form ?

My Product Information:
LiveCycle Designer, Windows
Bamboolian
Registered: Jul 27 2010
Posts: 48
Hi,

In most cases, objects can be changed to readonly using ".access" property.
try code like following in preSubmit or postSubmit event depending on your requirement.
RadioButtonList.access = "readOnly";CheckBox1.access = "readOnly";
pirous
Registered: Aug 19 2010
Posts: 2
many thanks

pirous