Hi
I am using struts2 framework and from my js file I am invoking my action class through AJAX call.In the success part of ajax I am getting a JSON object of
java map like below
where
typeModel is a object of
DeviceTypeModel class and DeviceTypeModel class is having a java
Map <String,String> class variable.
My question is in the java script part after getting the json object, how can I access this map key/value pair using JSON so that in the
jsp page I can print the name/value pair
for the whole map object.
Please help me...............