Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Niall_O_Donovan
Niall_O_Donovan
Offline

Badges

Badges
47

Accepted Solutions

Accepted Solutions
786

Likes Received

Likes Received
647

Posts

Posts
4352

Discussions

Discussions
228

Questions

Questions
4124

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Niall_O_Donovan
Customize the badges you want to showcase on your profile
Re: global data dropdown populated with user-entered data - Adobe LiveCycle 18-08-2013
Hi,You can loop through Table1 and then populate the dropdown in Table2 using this data. You would have script in the preOpen event of the dropdown in Table2. Here are some examples of populating dropdowns:http://assure.ly/KXAUg5http://assure.ly/jcTahKhttp://assure.ly/mP5LudHere is an example for looping through repeating rows:http://assure.ly/haaOfcLastly, here is an example for referencing objects, which will be useful for using the XFA.resolveNodes() method:http://assure.ly/kUP02yHope that he...

Views

898

Likes

0

Replies

0
Re: Accessing objects on one master page, to change all examples of that master page - Adobe LiveCycle 16-08-2013
Hi, What I have done in the past is have the five logos in image obects on the Master page, that are hidden. The have a blank imageField on the master page, with the following script in the docReady event:// Set the imagefield object to read onlythis.access = "readOnly";Then sets the imageField data binding to Global in Object > Binding palette. Lastly if you have a look at this example you will see how you can set the rawValue of the imageField to be the same as any of the image objects: http:/...

Views

867

Like

1

Replies

0
Re: multiple check boxes showing/hiding same fields - Adobe LiveCycle 16-08-2013
Hi Michelle,I think you could get it to work. For example if a field's visibility depended on Checkbox1 and Checkbox2, then the script for this field would sum these two checkboxes. On the other hand if a different field depended on Checkbox 1, Checkbox5 and Checkbox8, then it would just sum these. It would also work for subforms. The easiest event to use is the layout:ready event, however this is not very effective as this event fires all the time the user interacts with the form. So depending ...

Views

1.2K

Likes

0

Replies

0
Re: Needs help with my date validation script - Adobe LiveCycle 16-08-2013
Hi, One option instead of a validation script is to specify multiple date patterns in the Edit tab (Object > Field palette and click Patterns). {YYYYMMDD} | {DD-MM-YY} | {DD-MM-YYYY} | {DD/MM/YY} | {DD/MM/YYYY} | {MM-DD-YY} The Display pattern would remain the same {YYYYMMDD}Hope that helps,Niall

Views

927

Likes

0

Replies

0
Re: XML Source Error - cache property - Adobe LiveCycle 16-08-2013
The issue may be when you are attempting to edit in the XML Source tab. I am not familar with using LC Designer in SAP. Is SAP injecting text/objects into the form automatically? Niall

Views

874

Likes

0

Replies

0
Re: Help with DDL - Adobe LiveCycle 16-08-2013
Hi, You would need to have a script in the calculate event of DDL_A (which will set this to Read Only). if (Substr(DDL_B, 0, 3) == "123"){ this.rawValue = "Department A"; }Hope that helps,Niall

Views

2.0K

Likes

0

Replies

0
Re: multiple check boxes showing/hiding same fields - Adobe LiveCycle 15-08-2013
Hi,Instead of having script in the click event (or what ever event) of each of the checkboxes, have a script in the fields that sums the 20 checkboxes and if this is greater than 0 (eg at least one checkbox is ticked) then show the field. A kind of example here for suming radio buttons: http://assure.ly/uiKS6f. Another "related" example here: http://assure.ly/omsURE. Hope that helps,Niall

Views

1.2K

Likes

0

Replies

0
Re: How do I email a specific page - Adobe LiveCycle 15-08-2013
Hi, Email functionality will only email the document/PDF. As a workaround, you could place script in the mouseUp event of the Email button that hides all pages and then shows the required page. You could do this using the presence property. There are some exmples here: http://assure.ly/kyMP6l and http://assure.ly/iWzzPg. Hope that helps,Niall

Views

968

Likes

0

Replies

0
Re: global data dropdown populated with user-entered data - Adobe LiveCycle 15-08-2013
Hi, Global binding will not work for objects (including Dropdowns) in repeating rows. This is because while the object appears in different rows (different instances of the repeating row), they all have the same name. There is an example here, which minics global binding in repeating rows: http://assure.ly/eTOXaH. See the script in the exit event of the objects in the first table. Please note that this example is set up so that the number of rows is the same in both tables. Hope that helps,Niall

Views

854

Like

1

Replies

0
Re: Populating a Text Field based on Check Box(es) selection. - Adobe LiveCycle 15-08-2013
Hi,You might be better to place the script in the calculate event of the txtFld, as then when any of the referenced fields change, it will automatically fire the script in the calculate event. There is a summary of events here: http://bit.ly/gW3RNr. Hope that helps,Niall

Views

734

Likes

0

Replies

0
Likes given to