I am trying to use
tag to render my list in Struts2 jsp.
At the same location I have used a tag as well
Data is getting populated
Solved.
May this be of some help to others,
All I had to do was change the web.xml
as below:
struts2
/*
Earlier I had set the filter as
struts2
*.action
So the struts2-jquery tag could not find the corresponding .js files
Solution: change from
to
Thus, please be sure to check the web.xml
for such anomalies which often go overlooked as in my case.