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

_Bruce_Robertson
_Bruce_Robertson
Offline

Badges

Badges
38

Accepted Solutions

Accepted Solutions
372

Likes Received

Likes Received
274

Posts

Posts
1782

Discussions

Discussions
45

Questions

Questions
1737

Ideas

Ideas
0

Blog Posts

Blog Posts
1
Top badges earned by _Bruce_Robertson
Customize the badges you want to showcase on your profile
Re: saveXML and loadXML work in calculation event? - Adobe LiveCycle 25-11-2019
Hi,We might need to know more about what your form is doing, but you could try moving the calculate event code up the form hierarchy, so maybe on Row2RegardsBruce

Views

2.9K

Likes

0

Replies

0
Re: saveXML and loadXML work in calculation event? - Adobe LiveCycle 24-11-2019
Hi,I would suspect that doing the Row2.Cell1.value.exData.loadXML() will rebuild the Form DOM for that field. This would include the calculate event, so having the effect of interrupting the execution.Bruce

Views

2.9K

Likes

0

Replies

0
Re: dynamic image - Adobe LiveCycle 22-11-2019
Hi Johan,You will have to include the jpg image data in your xml as a base64 encoded string, and then bind an image field to itYou can't pick up a JPG file externally.RegardsBruce

Views

2.8K

Likes

0

Replies

0
Re: Expandable text overriding the fotter and a blank page is inserted - Adobe LiveCycle 20-11-2019
Hi,This is usually a "allow page break within content" option missing somewhere in the form hierarchy.Can you share your form, or maybe just a screen shot of the hierarchyRegardsBruce

Views

2.1K

Likes

0

Replies

0
Re: Hiding specific row in a table - Adobe LiveCycle 20-11-2019
Hi,If you table has a row that repeats you can use something like this code;Table1.resolveNode("Row1[5]").presence = "hidden";Which will hide the 6th row.RegardsBruce

Views

3.1K

Likes

0

Replies

0
Re: Get Data from specific Page - Adobe LiveCycle 14-11-2019
Hi Dennis,You will have to use the layout methods to work out which page you are on and to work out which page the appropriate PERSNR field is on.You will also have to do this in the ready:layout event, so there could be a performance hit.Anyway, this JavaScript code in the ready:layout event of the PERSNR_NEXTPAGE should do what you are after;var persnr;all:for (var i = xfa.layout.absPage(this); i >= 0; i--) { // work backwards from the current page var fields = xfa.layout.pageContent(i, "field...

Views

2.6K

Likes

0

Replies

0
Re: How to use Compound tags option (it is among the Paragraph properties) in LiveCycle Designer ES2 (9.8.0*)? - Adobe LiveCycle 06-11-2019
Hi,There is more that can be done using the rich text options, than can be done with the Designer's bulleted lists.I did a sample some time ago that might help,Adobe LiveCycle Designer Cookbooks by BR001: Custom Bulleted and Numbered Lists RegardsBruce

Views

2.6K

Likes

0

Replies

0
Re: Resting Radio Buttons when Radio Button Field is hidden - Adobe LiveCycle 25-10-2019
Hi,This depends on how you have done your show/hide code. If you were to have a subform that contained a radio button list called YesNo, one called ABC and a subform call aContent, then in the subform calculate event you could have code like;if (YesNo.rawValue == 1) { ABC.presence = "visible";} else { ABC.presence = "hidden"; xfa.host.resetData(ABC.somExpression);}if (ABC.rawValue == 1) { aContent.presence = "visible";} else { aContent.presence = "hidden";}The thing to note here is that when the...

Views

2.6K

Like

1

Replies

0
Re: Adobe Summit 2019 | L784 - Building for the Modern Web with the Adobe Experience Manager SPA Editor - Adobe Experience Manager 25-10-2019
Hi,Try https://expleague.azureedge.net/labs/L784/resources.zip

Views

17.0K

Like

1
Re: Postal Code Validations - Adobe LiveCycle 24-10-2019
Maybe look at validation patterns? Which country (or countries) are you targeting?

Views

3.2K

Likes

0

Replies

0
Likes given to