Hi to all,
I need to use an edit form with a tabular view, to make quick edits (such as Excel).
This form is to allow me to make changes in the various fields and then save your work. Saving can be global (for example, save all your changes made on the records) or record by record.
Can you help me?
See attached sample
Gioacchino
[attachment=0]tabular.jpg[/attachment]
I need to use an edit form with a tabular view, to make quick edits (such as Excel).
This form is to allow me to make changes in the various fields and then save your work. Saving can be global (for example, save all your changes made on the records) or record by record.
Can you help me?
See attached sample
Gioacchino
[attachment=0]tabular.jpg[/attachment]
Hi Gioacchino,
I've never tried to do anything like this. I think that there are a couple of choices.
The first one is to add a submit button to each row with a value that identifies the row. Then when the form is submitted you check the value of the button, extract the results for that row and update them.
The second, which is more complex but more elegant would be to use Ajax linked to the button so that the row data is sent back and saved when the button is clicked without re-submitting the whole form.
Bob
PS You may need to check your server settings with this as submitting the form will have a lot of data and a large number of variables.
I've never tried to do anything like this. I think that there are a couple of choices.
The first one is to add a submit button to each row with a value that identifies the row. Then when the form is submitted you check the value of the button, extract the results for that row and update them.
The second, which is more complex but more elegant would be to use Ajax linked to the button so that the row data is sent back and saved when the button is clicked without re-submitting the whole form.
Bob
PS You may need to check your server settings with this as submitting the form will have a lot of data and a large number of variables.
This topic is locked and no more replies can be posted.