aspose file tools
The moose likes Struts and the fly likes How to transfer a dynamic table value ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "How to transfer a dynamic table value ?" Watch "How to transfer a dynamic table value ?" New topic
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
    
    2

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
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to transfer a dynamic table value ?
 
Similar Threads
How can i add the 2 dimension matrix data and dispaly all the numbers.
settin a value in action class to html table cell...
retreive the value
Passing parameter value from jsp to action class
create dynamic table in struts application