Is there a way to make <display:table>
to make the table element values submit as input elements in my Struts 2 application using JSP's and the Display Tag library?
So, given ...
<form ... >
<display:table uid="list"
<display:column property="someProperty" title="title"/>
</display:table>
</form>
... I want list.someProperty
available on the Value Stack after a form submit.
Is that possible?
Thanks!