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: adaptive form || custom message after custom,serverside validation fails - Adobe Experience Manager Forms 29-10-2015
Hi Kanwaljit,These are the answers to the three questions which you have asked,a) Ajax Submit of adaptive form can be achieved using guideBridge#submit API. This API take an options object which consists of four members, (success, error, validate and context) as seen below./** * Submits the adaptive form to the pre-configured submit action. It can also validate the adaptive form * before submission. * * @param options {object} The signature of the object is * * { * validate: true, * success: fu...

Views

1.2K

Likes

0

Replies

0
Re: logging of widget's script or expression evaluation - Adobe Experience Manager Forms 15-10-2015
To enable logging follow these stepsa) Navigate to system console [1]b) Search for the service DAY CQ HTML Library Manager (or Granite HTML Library Manager) and open the settings for the samec) Check the checkbox which says Debug Consoled) In the text box which says Debug Init Script define a js variable window.AF_log_config with the value "a7-b7-c7-d7". To know what this value represents have a look at Log Configuration[2]e) Save the settings.f) Open any Guide and the logger will be enabledNote...

Views

494

Likes

0

Replies

0
Re: logging of widget's script or expression evaluation - Adobe Experience Manager Forms 15-10-2015
Hello,Your question arise's mainly from the perspective of debugging Adaptive form expressions right ? If yes, as of today there is no OOTB support to debug expression, but you can make use of the in-build browser support to add a javascript breakpoint during code exection [1] using the debugger; keyword. For Example,Say, you are writing a calculate expression to compute a field's value, then you can add debugger; keyword before the actual business logic,debugger; textbox.valueHope this answer's...

Views

477

Likes

0

Replies

0
Re: Sharing design styles across templates in the same website - Adobe Experience Manager Forms 15-10-2015
Hi,Design dialog is specific to a component instance but shared across pages which are using same template. Additionally, the design path for each template can be configured using cq:designPath property of the jcr:content node.Considering the above statement, I don't think design assets could be shared across templates.Thinking loud, I think there can two solutions to your problem:a) Either you create the node hierarchy in the design path pertaining to the template using sling (or)b) You could a...

Views

576

Likes

0

Replies

0
Re: Populate dropdown field using java script - Adobe Experience Manager Forms 15-10-2015
Hi, You should have used options expression [1] instead of calculate expression to dynamically populate drop down list. Calculate Expression is to calculate the value of drop down list and not the options.[EDIT] Few more things,GuideBridge acts as a "bridge" for external application to communicate to "adaptive form", In your case, the recommended approach is to pass a reference of the address panel to the address setter API, something like var addressSetter = function(addressPanel){ // use the i...

Views

3.9K

Likes

0

Replies

3
Re: Regarding Terms and Conditions Field - Adobe Experience Manager Forms 15-10-2015
As of now, bind Ref property is not supported in terms and conditions field. But if you have a use case, I would like to hear it.

Views

682

Likes

0

Replies

0
Re: Script to Show Hide - Adobe Experience Manager Forms 15-10-2015
Visibility Expression is used to control the visibility of field/panel. The return value of visibility expression should be a boolean(true/false), where true says that the component should be visible and false says that it should be hidden.Suppose, you have two fields A and B and say, you want to control the visibility of A based on the value present in B. In such case, the visibility expression would look like this,// suppose we want to make the field A visible only when the value of // field B...

Views

1.3K

Likes

0

Replies

0
Re: Parsys component layout overlapping - Adobe Experience Manager Forms 15-10-2015
A quick question, Have you used AEM forms or its a normal CQ Page ?? If you have not used AEM forms, please post it here

Views

721

Likes

0

Replies

0
Re: Visibility Logic - Adobe Experience Manager Forms 15-10-2015
There could be three solutions to your problem:a) Suggested by mandeep.b) You can use this visible expression in text field, (radiobutton.value === null ? true : (radibutton.value == "1")) . Assuming you have no default value set.c) Set a default value for the radio button.

Views

792

Likes

0

Replies

0
Re: local repository access with sling resource resolver - Adobe Experience Manager Forms 15-10-2015
There can be two approach to solve your problema) Considering the test class resides inside OSGI, you can inject a reference to this service [1]b) If you still need a slingRequest Object(from current user session), you can make a rest end point(write all ur test class code in jsp) and hit this rest end point. For this you can refer [2] [3][1] http://docs.adobe.com/docs/en/cq/5-5/javadoc/org/apache/sling/api/resource/ResourceResolverFactory.html[2] http://sling.apache.org/documentation/developmen...

Views

882

Likes

0

Replies

0
Likes from