Hy guys,
I'm trying to solve this problem:
I have a jsp page with inside a table generated with dispaytag library and other kind of stuff.
When I press a button, I would like to generate an ajax call reloading just the table and not the whole jsp page, that display correctly the uptated table with also the generated tag pagebanner and pagelinks properly, increasing and decreasing elements founds.
Is there any solution to solve this problem?
.load()
. Just bind a action to a very simple JSP with just the <display:table> tag and the minimum includes required. The server will render a html response. Get it with.load()
and replace the old table. – Rourke.load("refreshTable.action");
– Model