OR,

You can send a whole HTML code of the <table> as response.

In this case, your server side view will be simple, just like any normal JSP.
The client side will receive the HTML code, and you can insert this
HTML piece into your page.
But it will be difficult to manipulate, because what you get is not
the raw data.


Basically,
if you want some simple html view, you can generate it on server side,
by using normal JSP.
If you want more complex flexible view, it is better to response the
raw data(in JSON), and manipulate it on the client side, by
JavaScript.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to