Dynamic Dropdown values for touch UI component | Community
Skip to main content
Mani_kumar_
New Participant
August 30, 2016
Solved

Dynamic Dropdown values for touch UI component

  • August 30, 2016
  • 1 reply
  • 1503 views

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 

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 smacdonald2008

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. 

1 reply

smacdonald2008
smacdonald2008Accepted solution
New Participant
September 6, 2016

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.