i am trying to pass parameter from a jquery function.
Everything is fine but only problem is passing the parameter value rowObject.themeScreenshot
Struts 2 tags
are evaluated at page render time, which is far before your script runs.
If you check the source code of the page you will see those tags have been converted to regular html elements. So it the para
javascript variable would not be evaluated.
You can try to update the return line to
return "" + "?imageId="+para+ "'>";