I am working on an adaptive form. I upload a Test.xdp file. Then use the template as areference to synchronize with the adaptive form.
I have three step in the form.
[img]qq.png[/img]
I have created a custom submit action for my form .
Now my problem is how to get the form data in the post.POST.jsp .
There are 2 problems I need to fix.
Can someone help me
Thanks advance
Jing
Solved! Go to Solution.
Views
Replies
Total Likes
Another way to get data posted from an Adaptive form is to post data to an OSGi service. Then you can use Java logic to process the data to meet your business requirements. See this article:
Views
Replies
Total Likes
Another way to get data posted from an Adaptive form is to post data to an OSGi service. Then you can use Java logic to process the data to meet your business requirements. See this article:
Views
Replies
Total Likes
Hi, I have got the solution for this question.
Document dataXml = null;
if(slingRequest.getParameter("jcr:data")!=null) {
dataXml = new Document(slingRequest.getRequestParameter("jcr:data").get());
}
The "dataXml " is the data of the form.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies