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

varundua
varundua
Offline

Badges

Badges
11

Accepted Solutions

Accepted Solutions
10

Likes Received

Likes Received
4

Posts

Posts
32

Discussions

Discussions
10

Questions

Questions
22

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by varundua
Customize the badges you want to showcase on your profile
Re: AEM Forms Tabbed Enrollment Template Bug(s)? - Adobe Experience Manager Forms 15-10-2015
The caption (as you call it, we call it panel summary) that you see in the Repeatable Panel is actually controlled by the summary expression on a panel. In the edit dialog of the repeatable panel you can write an expression in the Summary Expression field (The field is highlighted in the Image).[img]repeat.png[/img]If you don't provide any expression, this is the expected behaviour. If you provide a summary expression, it will be executed every time you add or remove a instance of the panel usin...

Views

1.1K

Like

1

Replies

0
Re: How to switch off validation of a field using guidebridge? - Adobe Experience Manager Forms 15-10-2015
Also jsonModel property is internal and you should directly use data.target.somExpressiondata.newText

Views

1.8K

Likes

0

Replies

0
Re: How to switch off validation of a field using guidebridge? - Adobe Experience Manager Forms 15-10-2015
Hi Urs,May I know how you are hiding the field ? Are you using the Visible Expression or the Value Commit Expression. In your use case using Value Commit Expression will give better performance.RegardsVarun

Views

1.8K

Likes

0

Replies

2
Re: How to switch off validation of a field using guidebridge? - Adobe Experience Manager Forms 15-10-2015
Hi You can use the validationsDisabled property of a Field to switch off validations. In your example, you can write in the value commit expression of the birthdate field if ( checkIsabove18 ) { // replace checkIsAbove18 with an actual check legalRepresentation.visible = false; // assuming the name of the legal representation field is legalRepresentation. If not change this with the actual name legalRepresentation.validationsDisabled = true;} else { legalRepresentation.visible = true; legalRepre...

Views

1.8K

Likes

0

Replies

4
Re: Enable Server-Side Validation - Adobe Experience Manager Forms 15-10-2015
Hi Alex,The feature was introduced in AEM 6.0 Feature Pack 1 and was not present in the AEM 6.0 release. To try that feature you need to upgrade to Feature Pack 1RegardsVarun

Views

1.0K

Likes

0

Replies

0
Re: Populate dropdown field using java script - Adobe Experience Manager Forms 15-10-2015
Hi vkeerthy,You can use the instances property of a Panel's InstanceManager to get hold of all the instances of your address panels, create an array of values and return that in the optionsExpression. So in your case the code would be something likevar myPanel = addressCollections.panel1, values = []; for (var i = 0; i < myPanel.instanceManager.instanceCount; i++) { var panelInstance = myPanel.instanceManager.instances[i]; values.push(panelInstance.address.value); } // this is important since we...

Views

3.9K

Likes

0

Replies

1
Re: Submit to Forms workflow submit action - Adobe Experience Manager Forms 15-10-2015
Hi Afam,LC Process Locator and Invoker service searches for those process in Livecycle which take two input parameters having names dataxml and fileAttachmentLists by default. If your process have different names, you can enter those in the configuration.These processes are then listed in the Submit to Forms Workflow submit action configuration and you can choose one among them. Note: dataxml is not a property of your process but the name of the input variable which accepts data xml (a document ...

Views

1.1K

Likes

0

Replies

0
Re: Submit to Forms workflow submit action - Adobe Experience Manager Forms 15-10-2015
Hi Scott,The approach you have mentioned is correct and will work in all the cases.But we also provide a OOTB submit action which does the same. The action invokes the process selected by the user in the submit action configuration. The only limitation is that it only invokes those process that take two input parameters. The action searches and lists all the process that take two parameters (having specific names) and the author can then select any of the process from the list. The name of those...

Views

1.1K

Likes

0

Replies

0
Re: Submit to Forms workflow submit action - Adobe Experience Manager Forms 15-10-2015
To use the Submit to Forms Workflow option you need to configure LC with AEM. The steps for that are provided in [1]. You don't have to provide any URL, Once you complete the configuration steps it will show you a list of process and you can select one.I am not sure I understood your second question completely. My initial understanding is that you have not configured echosign service in AEM the steps for which are provided in [2]. Can you share the link which you are talking about.[1] http://hel...

Views

1.1K

Likes

0

Replies

0
Re: How to generate custom component that behaves like a panel - Adobe Experience Manager Forms 15-10-2015
Hi AshokCurrently we do not support Designer like Fragments in Adaptive Forms. But there is a workaround with some known limitations to create a composite component (which can have multiple AF Fields/Panels) which when dropped onto an AF creates all the Fields/Panel in that Component. You can reuse the same component across multiple AFs. I am detailing out the steps for the sameCreate an AF (choose the survey Template provided OOTB). Remove all the Panels/Fields except RootPanel.Add the necessar...

Views

844

Likes

0

Replies

0
Likes given to