Sightly : How to Iterate through Map<String , Map>
Backed code submits an object as :
HashMap<String, HashMap> map= new HashMap<String, HashMap>();
In Sightly how can I access Key, Values of the inner Hash Map.

Backed code submits an object as :
HashMap<String, HashMap> map= new HashMap<String, HashMap>();
In Sightly how can I access Key, Values of the inner Hash Map.

Here an example the shows how it can be done, without java code.
HTL-code:
<div data-sly-use.hashmap="com.adobe.examples.htl.core.hashmap.HashMapExample"
data-sly-list="${hashmap.map.keySet.iterator}">
${item}
<ul data-sly-list.aem="${hashmap.map[item].keySet.iterator}">
<li>${aem} ${hashmap.map[item][aem]}</li>
</ul>
</div>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.