Saving Data from Inline Edit
Saving Data from Inline Edit
duggy
Posts: 4Questions: 2Answers: 0
Hi,
I have a datatable where I do inline edit and the ajax fires off after a cell is edited. I am actually running ASP Vbscript to do the database inserts. However I am struggling with what data comes through for me to capture and insert. If I print out the request.form I get something like:
action=edit&data%5Brow_2%5D%5BTotal%5D=2
(which is the data I put in (2) to the column named Total) but its one long string. Is there a way to parse it or just retrieve the edited cell?
Much appreciated.
This discussion has been closed.
Answers
The format that is sent to the server is documented here.
That very much depends upon what your server-side environment is. In PHP you'd use
$_GET
for the above.Allan