


Hi All,
I am trying to fetch the dropdown values for a component in touch UI from a servlet using datasource object
but not about fetch the details.
This is working if you write the code in component level as below described.
https://helpx.adobe.com/experience-manager/using/creating-granite-datasource.html.
Please help me to get these values from servlet
Views
Replies
Sign in to like this content
Total Likes
YOu cannot get them from the Java servlet (Java servlet code not used to read dialog fields) - they are read using JS as described in the article.
However - if you are using HTL - then a class that extends WCMUSePojo can read dialog fields. See:
http://scottsdigitalcommunity.blogspot.ca/2016/07/creating-aem-html-template-language.html
For example:
currentNode.getProperty(
"./jcr:tocity"
).getString();
Hope this helps.
Views
Replies
Sign in to like this content
Total Likes
YOu cannot get them from the Java servlet (Java servlet code not used to read dialog fields) - they are read using JS as described in the article.
However - if you are using HTL - then a class that extends WCMUSePojo can read dialog fields. See:
http://scottsdigitalcommunity.blogspot.ca/2016/07/creating-aem-html-template-language.html
For example:
currentNode.getProperty(
"./jcr:tocity"
).getString();
Hope this helps.
Views
Replies
Sign in to like this content
Total Likes