Rows are dynamic. Let me explain the issue with an example.My Rest API response is similar to this-[
{
"id":28,
"Title":"Sweden"
},
{
"id":56,
"Title":"USA"
},
{
"id":89,
"Title":"England"
}
]What I want to do isBind first Column - "Title" (TextB...
Hi Guys, I am trying to create a table with 2 columns.First column as text and second with a Checkbox for selection of the rown in AEM forms.(Screenshot below)Need to bind the value of the checkbox with a value so that I can determine what all rows are selected. I am able to bind the data with first...
Working if I specify content type like below. However, same is not working if i pass json as data. Bit weird. URL xmlUrl = new URL("https://<hostname>/DataFile.xml");
builder.addBinaryBody("data", xmlUrl.openStream(), ContentType.DEFAULT_BINARY, "data.xml"); URL xdpUrl = new URL("https://<host>/...
Tried this builder.addBinaryBody("data", files[i]);
// You can also pass a URL for the template and set the content type to
// text/plain
builder.addTextBody("template", "https://forms.enablementadobe.com/content/dam/xdptemplates/custom_fonts.xdp", ContentType.TEXT_PLAIN);
builder.addB...
Trying to generate PDF using "Communications document generation" API. Doc URL - https://adobedocs.github.io/experience-manager-forms-cloud-service-developer-reference/api/sync/#tag/Communications-document-generation-synchronous-APIs Sample code suggest we can use URL. When I tried with my xdp on Az...
Thanks for promtly reply. I want to use try this builder.addBinaryBody("data", dataXml.getBytes();
builder.addTextBody("template","crx://content/dam/formsanddocuments/XSDBasedForm.xdp",
ContentType.TEXT_PLAIN);instead of builder.addBinaryBody("da...
Hi Guys, Try to use AEM Forms as a Cloud Service - Communications document generation synchronous APIs to generate PDF(DOR) and according to documentation it supports template path as "reference path of your Experience Manager Repository". Wondering what will it be like - content/dam/formsanddocumen...