最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Adobe LiveCycle designer - form scripting - changing the field from optional to required - Stack Overflow

programmeradmin0浏览0评论

I'm trying to make a dynamic PDF form using Adobe LiveCycle designer and have a problem. I have a boolean checkbox field that decides if other text fields are required or optional. I'd like to implement this functionality using form scripting - in the 'changed' event of the checkbox field I'd like to modify other form fields so they bee either required or optional. My problem is that I don't know the javascript API and can't find how to modify field 'requiredness'. Thanks for help R

BTW - I'm a beginner ind Adobe's PDF tools but this software is ] a big disappointment for me... And the developer documentation is so weak. Do you know any good online documentation of PDF forms javascript API?

Update: I know how to mark a field required - by setting its mandatory property to mandatory="error". But don't know how to make the field optional.

I'm trying to make a dynamic PDF form using Adobe LiveCycle designer and have a problem. I have a boolean checkbox field that decides if other text fields are required or optional. I'd like to implement this functionality using form scripting - in the 'changed' event of the checkbox field I'd like to modify other form fields so they bee either required or optional. My problem is that I don't know the javascript API and can't find how to modify field 'requiredness'. Thanks for help R

BTW - I'm a beginner ind Adobe's PDF tools but this software is ] a big disappointment for me... And the developer documentation is so weak. Do you know any good online documentation of PDF forms javascript API?

Update: I know how to mark a field required - by setting its mandatory property to mandatory="error". But don't know how to make the field optional.

Share Improve this question edited Nov 7, 2011 at 19:41 nightwatch asked Nov 7, 2011 at 19:25 nightwatchnightwatch 1,4042 gold badges19 silver badges27 bronze badges 1
  • [enter link description here][1] [1]: stackoverflow./questions/27960808/… Please help me here , i am stuck here and its urgent now – pushkar kumar Commented Jan 15, 2015 at 10:58
Add a ment  | 

2 Answers 2

Reset to default 6

To make a field be optional you set the mandatory property of the object to "disabled"

Ex: displayObject.mandatory = "disabled"

To do so on a condition you do:

field.mandatory = (radioGroup.rawValue == 1) ? "error" : "disabled"

Where field is the field you are making required/optional and radioGroup is a conditional. In your case it would be myCheckbox.rawValue == 1

Try doing:

this.getField("Field Name").required = false;

or:

this.getField("Field Name").required = true;
发布评论

评论列表(0)

  1. 暂无评论