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

lesutton1
lesutton1
Offline

Badges

Badges
13

Accepted Solutions

Accepted Solutions
14

Likes Received

Likes Received
9

Posts

Posts
47

Discussions

Discussions
16

Questions

Questions
31

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by lesutton1
Customize the badges you want to showcase on your profile
Re: Passing values from one form to another - Adobe Experience Manager Forms 02-08-2018
In the template that does the actual render of the form, you can populate the "data" variable that will be pushed into the form. To get variables and parameters, the most useful gets are from the properties object and the request object. To get a parameter passed by a form or URL, you can use "getParameter" on the request object.For example:String title = properties.get("jcr:title", "default title");String text = properties.get("jcr:text", "default text");String employeeID = request.getParameter...

Views

1.8K

Likes

0

Replies

0
Re: Passing values from one form to another - Adobe Experience Manager Forms 01-08-2018
You will need to create a custom submit action for your form. In your post.POST.jsp you'll need to get the data from your form and then handle the redirect. There are numerous ways to do this but here are a few sample lines:Get the XML from the submitted form:String formXML = request.getParameter("jcr:data");DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();DocumentBuilder builder;builder = factory.newDocumentBuilder();org.w3c.dom.Document doc = builder.parse( new InputSource...

Views

1.9K

Likes

2

Replies

0
Re: Fetch Data from CRX and display it on Adaptive Form - Adobe Experience Manager 08-06-2018
Filling from CRX is relatively easy using the dataRef parameter:http://localhost:4502/content/forms/af/xml.html?wcmmode=disabled&dataRef=crx:///tmp/fd/af/myassets/sample.xmlYou need to make sure your crx payload data matches the schema / mappings of your adaptive form though.Adobe Experience Manager Help | Prefill adaptive form fields

Views

1.3K

Likes

0

Replies

0
Re: Efficient way to author large numeric tables - Adobe Experience Manager 23-05-2018
Hi Greg, for large amounts of data inside a table, I'd probably create a custom component and use datatables (https://datatables.net/). But if the table is working for you but just slowing down your authoring experience, move the table to a component and work on it there. It will be much more responsive. That said, if your authoring experience is slowing down - you need to start looking at rearchitecting your design and doing some lazy loading of fragments in panels.if you are capturing data ins...

Views

3.4K

Likes

0

Replies

0
Re: Using schema to create an Adaptive Form - Adobe Experience Manager Forms 23-01-2018
Hi Tommy, as long as the hierarchy of the schema is the same as it was in Workbench and uploaded to AEM in the same manor, the includes should work perfectly fine.Lee.

Views

3.2K

Likes

0

Replies

1
Re: AEM 6.2 Forms Hide Button until all mandatory fields are filled - Adobe Experience Manager Forms 08-12-2017
Try using guideBridege - validate but check for the number of errors produced:function clickNext(currentPanel){ var errorList = []; try { guideBridge.off("validationComplete"); // turned off validation complete here if you have any other events dependant on validation of entire form. } catch (e){ } guideBridge.validate(errorList,currentPanel.somExpression); // the panel is the area you wish to validate - it can be the entire form. turnOnValidationComplete(); // turn back on validation event if y...

Views

4.2K

Likes

0

Replies

0
Re: AEM forms jee installation - Adobe Experience Manager 30-11-2017
(open a new question for anything else you need)You need to 'white list' the domain you will be using to access this machine or what is referred to as the referring URLs. In Administration Console, click Settings > User Management > Configuration > Configure Allowed Referer URL’s. The Allowed Referer list appears at the bottom of the page.To add an allowed referer:Type a host name or IP address in the Allowed Referers box. To add more than one allowed referer at a time, type each host name or IP...

Views

1.1K

Like

1

Replies

0
Re: AEM forms jee installation - Adobe Experience Manager 29-11-2017
When you install the JEE server, it will install an author instance into the same JEE environment (IE: it will install an author Jar into JBoss). This author instance should be your primary way of editing Adaptive Forms and generally authoring. For the publish instance, ideally it should be on a separate machine. I definitely would not put it inside the same JBoss deployment. Definitely on a separate piece of hardware. However, what do you need it for? If you are doing AEM Workspace forms and do...

Views

1.1K

Likes

0

Replies

0
Re: AEM 6.2 Form - text outside the form - Adobe Experience Manager Forms 29-11-2017
Chris, if you take a look at the default templates, you should find a good modal window example. It allows you to create an editable text are on the form along with a button on the form that pops up the instructions over / above the form. Alternatively, if you need author-editable text inside your form, then you can add a parsys section to the template of your form. That will allow you to have an author editable area on the form that you can either use the editor for, or will be stored as a crx ...

Views

1.3K

Likes

0

Replies

0
Re: Invoke workbench process from AEM page - Adobe Experience Manager Forms 08-11-2017
Sobhan, each process you create in Workbench automatically exposes a REST point that you can submit to. Copy this URL (double click on the green start point to see this) and then copy the URL into the submit action on your form. If you render the form from the same server the REST point is exposed on (recommended), you won't need to include the machine name. The default action is for the form to post the form XML data to the REST point. You'll definitely be able to see this if you turn on record...

Views

4.7K

Likes

0

Replies

1