Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Hi @All i had created an component with drop down the data source i get from servelet like :
<datasource
jcr: primaryType:"nt: unstructured"
Sling: resourceType="/myservlet/path" />
It's possible to get parameter value from this datasource to my java model?
And what i am trying to do is dynamically populate value based on first drop down bring out the values on second dropdown like in first drop down choosing India the states of India bring out in second one? What are ways to make it as possible please
¡Resuelto! Ir a solución.
Vistas
Respuestas
Total de me gusta
Vistas
Respuestas
Total de me gusta
@Dilli_babu_22 What parameter value you want to pass? how would you fetch the value from?
Vistas
Respuestas
Total de me gusta
Hi @Dilli_babu_22 , not sure what the ask is here but if you want some additional data to your java servlet, you can add properties to the node and read them in your servlet by getting resource valuemap.
Hope this helps,
Thanks,
Krishna
Vistas
Respuestas
Total de me gusta
Hi @Dilli_babu_22 , Your question is a little confusing, but as far as I understand, below are the solutions.
If your data source structure is as below and you want to get the value of the tag path in the servlet class, then you can get it with the help of a resource.
<!-- # cq:dialog xml -->
<items jcr:primaryType="nt:unstructured">
<colorTags
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/select"
fieldDescription="Select the color tags"
fieldLabel="Color Tags"
multiple="{Boolean}true"
name="./colorTags">
<datasource
jcr:primaryType="nt:unstructured"
sling:resourceType="/bin/colorTagLists"
tagsPath="/content/cq:tags/learning/color"/>
</colorTags>
</items>
<!-- # cq:dialog xml -->
Getting tagsPath in servlet class :
resourceResolver = request.getResourceResolver();
pathResource = request.getResource();
resourceList = new ArrayList<>();
/* Getting AEM Tags Path given on datasource Node */
String tagsPath = Objects.requireNonNull(pathResource.getChild("datasource")).getValueMap().get("tagsPath", String.class);
assert tagsPath != null;
Please refer to this article for full details - https://unlocklearning.in/dynamic-dropdown-in-aem/
I hope this could help you!!!
Regards
Shiv
Vistas
Respuestas
Total de me gusta
Vistas
Respuestas
Total de me gusta
Thanks @arunpatidar bro and all others to. Without using js it's possible bro ?
Vistas
Respuestas
Total de me gusta
Vistas
Respuestas
Total de me gusta
Ok I am understand bro . Thanks @arunpatidar 👍.
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas