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
Solved! Go to Solution.
Views
Replies
Total Likes
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);
}
});
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).
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
Views
Replies
Total Likes
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);
}
});
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies