vote up 1 vote down star

I needed a solution , to implement adding dynamic HTML table rows and filling them with details , the rows should then be added to database on submit. what is the best way to implement this in jsp.The jsp page on load get the data from the database and creates rows, i can edit the row values and it should be updated,also new rows can be inserted in front end page, which should along with updated rows (retrieved from database ),be saved in jsp.

flag

2 Answers

vote up 0 vote down
  1. client side javascript. functions like add row, remove row, move row up, move row down as required. Elsewhere on SO
  2. remember to name the controls that are added uniquely, like name1, name2, name3... Optionally store count of rows in some hidden field which gets updated and submitted along with the form.
  3. on the server side use that counter or otherwise loop through all the request variables to find name*, and insert name*, age*, gender* etc. to the database in the loop.
link|flag
vote up 0 vote down
  1. Store the data in the table in a javascript multi-dimensional Array object that has one extra column. ex., if the table is 2x2, create a dynamic arrray of size 2x3 (new Array(2,3))

  2. use the first cell of every row of the array to store the primary key of each row of the data in the table and the remaining cells of the row to store the actual data as in the html table.

  3. when a new row is added to the html table, or any data is updated, update this javascript array accordingly. leave the first column of newly created rows blank to indicate a new row (or fill it with a dummy value to indicate an empty row)

  4. Submit this data in the Array to the server code processing it when the submit button is clicked. This can be done in a variety of ways (appending to the query string, creating hidden variables, etc. )

  5. on the server-side, process this data - update the records that have the primary key and create new records for the ones without a key.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.