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

rishim22446870
rishim22446870
Offline

Badges

Badges
10

Accepted Solutions

Accepted Solutions
12

Likes Received

Likes Received
2

Posts

Posts
32

Discussions

Discussions
3

Questions

Questions
29

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by rishim22446870
Customize the badges you want to showcase on your profile
Re: AEM Forms Header and Footer - Adobe Experience Manager Forms 12-12-2016
HI Rama,AEM Forms follow similar notion of creating templates as done in AEM Sites. In 6.2, a new feature of template editor was added in AEM. With this, you could actually create editable templates(template created using template editor) as detailed here [1]. You could also refer to a video tutorial at [2]If you are using 6.1, you could follow steps mentioned here [3]. Please Note, these templates are static template meaning, they don't have any editor for authoring them.Template editor is very...

Views

1.1K

Likes

0

Replies

0
Re: What is first? 'Document ready' or guideBridge.connect() ? - Adobe Experience Manager Forms 13-04-2016
Hi,It is always recommended to use guideBridge API's once guideBridge is initialized(inside connect function). What is your use-case of using jQuery inside guideBridge.connect ?Ideally, DOM operations through jQuery should be done inside document ready irrespective of guideBridge being connected or not.Thanks,Rishi

Views

774

Likes

0

Replies

0
Re: Display default value of Dropbox - Adobe Experience Manager Forms 13-04-2016
Hi Alex,This was a bug in 6.1 Feature Pack 1 and it recently got fixed.Thanks,Rishi

Views

1.1K

Likes

0

Replies

0
Re: OOTB captcha component for adaptive forms - Adobe Experience Manager Forms 13-04-2016
Hi Daniel,There is no OOTB captcha component available in AEM Forms as of today. There is a captcha component available OOTB as part of AEM Foundation component as seen here [1] in CRX/DE.You can anytime create a custom component in AEM forms for your usecase.Thanks,Rishi[1] /libs/foundation/components/form/captcha/captcha.jsp

Views

460

Likes

0

Replies

0
Re: Adaptive forms - visibility/access expressions and mandatory option - Adobe Experience Manager Forms 13-04-2016
Hi Daniel,The functionality to "set" a mandatory property for a field was introduced in 6.1 Feature Pack 1. For the given use-case, you can follow the steps mentioned below:a) Say, we are controlling visibility of a field Y based on a field's(say X) value.b) On "value commit" script of X, you can write the following script,if(this.value === "4"){ Y.visible = true; Y.mandatory = true; } else { Y.visible = false; }A similar approach could be followed for "access" too.Hope this solve's your use-cas...

Views

840

Likes

0

Replies

0
Re: Pre-populate form fields - Adobe Experience Manager Forms 01-04-2016
Hi,Can you throw some light on what was the problem and what were the steps taken to solve it ? Also, with 6.2, we have introduced a much simpler and manageable way to prefill forms with the notion of "prefill service", the documentation of this would be live soon.Thanks,Rishi

Views

1.3K

Likes

0

Replies

0
Re: Chrome auto-completion of form fields - Adobe Experience Manager Forms 01-04-2016
Hi Alex,This is a known bugThanks,Rishi

Views

822

Like

1

Replies

0
Re: How to extend or sub-type 'guideField' ? - Adobe Experience Manager Forms 18-01-2016
properties object is exposed as part of global objects, it is not a part of guideField bean. You should try the following code in the component's jsp,<% String hasUrlForAutocompleteLookUp = properties.get("hasUrlForAutocompleteLookUp", null); %> <% if(hasUrlForAutoCompleteLookUp != null) {%> <% } %>

Views

600

Likes

0

Replies

0
Re: How to use guideBridge.validate([], <some-expression>) ? - Adobe Experience Manager Forms 18-01-2016
Hi,On using the validate API, the fields specified in the validate API get the class "validate-failure" only if the field does not pass the validate test. Probably, in your case, there must be a call to validate the entire AF before the actual validate to the field is called. To verify this, you can perform the following steps:a) Open the AF in preview mode.b) Once done, before doing any changes in AF, execute the below mentioned script.c) Say the som expression of the field to validate is "A", ...

Views

1.2K

Likes

0

Replies

0
Re: How to extend or sub-type 'guideField' ? - Adobe Experience Manager Forms 18-01-2016
Hi,You can create a new "customized texbox component" which inherits from textbox component and leverage the global object "properties" [1] exposed by AEM for your use-case. I don't think there is a need to create a bean.Thanks,Rishi[1] https://docs.adobe.com/docs/en/cq/5-6-1/developing/scripts.print.html

Views

610

Likes

0

Replies

0
Likes from