Display redirected parameters(from servlet response) in redirected page | Community
Skip to main content
New Participant
December 31, 2019
Solved

Display redirected parameters(from servlet response) in redirected page

  • December 31, 2019
  • 3 replies
  • 4196 views

Form A has few fields and submit button. For form submission, we are using Submit to Rest End point(Sling AEM servlet) and adding redirect URL as Form B path

 

We will get ID value as part of sling AEM servlet response. This ID has to shown in Form B.

 

I have gone through all the below links and could not find how to get ID value in Form B. Please read my question clearly and provide your response. Thanks in advance.

 

How to return a value from submit action and use it in the redirect page?

AEM 6.0 Forms Help | Writing custom Submit action for adaptive forms

https://stackoverflow.com/questions/31454357/aem-6-1-sightly-basic-form-submit-and-redirect-to-same-... 

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ksetti

Hi Sankar, 

 

If you haven't get the answer, you can try below. Just have this code in your submit servlet. 

import com.adobe.aemds.guide.servlet.GuideSubmitServlet;

 

Map<String, String> redirectParameters = GuideSubmitServlet.getRedirectParameters(slingRequest);

redirectParameters.put("responseId", responseId);

GuideSubmitServlet.setRedirectParameters(slingRequest, redirectParameters);

 

You can capture this value using javascript callback function in submit button rule and pass this value to formB

guideBridge.submit({
  error : function (guideResultObject) {//log message},
  success : function (guideResultObject) {
alert(guideResultObject.data.responseId);
}
});

 

3 replies

ksettiAccepted solution
New Participant
April 7, 2020

Hi Sankar, 

 

If you haven't get the answer, you can try below. Just have this code in your submit servlet. 

import com.adobe.aemds.guide.servlet.GuideSubmitServlet;

 

Map<String, String> redirectParameters = GuideSubmitServlet.getRedirectParameters(slingRequest);

redirectParameters.put("responseId", responseId);

GuideSubmitServlet.setRedirectParameters(slingRequest, redirectParameters);

 

You can capture this value using javascript callback function in submit button rule and pass this value to formB

guideBridge.submit({
  error : function (guideResultObject) {//log message},
  success : function (guideResultObject) {
alert(guideResultObject.data.responseId);
}
});

 

New Participant
January 9, 2020

@mayank_gandhi

 

Thanks for your response.

 

In the servlet where you are handling the request/response, append the ID in the form B path that you created and fetch it in the form.

 

==>I assume that ID should be added as query param in form B path. I want to show this ID in textbox(added in form fragment in Form B.

==> In this scenario, where we have to read this ID value and display in textbox. Is it from rule editor or some other place?) ]

 

 

2. Don't use 2 forms, rather have two fragments. Create button to submit in fragment 1 keeping the fragment 2 hidden, on callback hide the frag1 and set the field of fragment 2(form B in your case).

 

==>Form A is initial dialog for creating more than 10 different forms. I can't add that Form A and Form B as single fragment in single form because Form B(contains more than 8 childpanels) will be different for 10 different forms.

 

==> For example 

Mayank_Gandhi
Employee
January 13, 2020
Regarding the 2nd question: You do not need initial dialog and the mail form to be in same fragment. Just keep them separate but hide them based on requirement. Your Form A is like a re-usable fragment and will remain as is.
Mayank_Gandhi
Employee
January 6, 2020

You can try two things:

1. In the servlet where you are handling the request/response, append the ID in the form B path that you created and fetch it in the form.

2. Don't use 2 forms, rather have two fragments. Create button to submit in fragment 1 keeping the fragment 2 hidden, on callback hide the frag1 and set the field of fragment 2(form B in your case).