I am working on a Struts 2 application .I have a JSP page in which there is a normal html table. In one of the columns , I have a link called 'update' . When I click on the 'update' , a new popup window will open and the pop up will have many other details of the current row (which means it has to pass through some action and fetch data from database).
There is a Submit button in popup , which when clicked , must submit the edited data .
How do I create this popup in struts 2?
Should it be the same form as the parent window or a different one ?
It would be of great help , if you can give links to some tutorial . I am not able to find it in google search .