Currently I had a requirement to access the elements of Map from List. Please see the below sample code snippet.
List<Map> listOfMap = new Hash();
Map hmap1 = new HashMap();
hmap1.put("name","Rob");
hamp1.put("class","I");
Map hmap2 = new HashMap();
hmap2.put("subjects","{subject1:Maths, subject2:Englsih}");
listOfMap.add(hamp2);
Now in sightly I have to access and display this map elements from list. Can any one suggest me how to do this.