| Author |
How to transfer a dynamic table value ?
|
Kousik Majumder
Ranch Hand
Joined: Sep 30, 2007
Posts: 219
|
|
Hi All,
I am using struts. I have a table in the jsp page which is dynamically populated.
How can I transfer the table value to action class.
The ActionForm is not getting populated with the dynamic value. So I can not get the value in the Action class.
Please suggest what is the standard way to get the table value.
Thanks,
Kousik
|
Thanks in Advance,
Kousik
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9191
|
|
|
You'll either have to introduce <input type="text" disabled="disabled" /> (the disabled is to disallow users to edit the values) in your table cells and put that table in a form for the values to be submitted to the server. Or you can put hidden fields in your page and populate them with the required values. The text in a normal html <table> are not submitted to the server...
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
 |
|
|
subject: How to transfer a dynamic table value ?
|
|
|