Saving Data from Inline Edit

Saving Data from Inline Edit

duggyduggy 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.

Answers

  • allanallan Posts: 63,470Questions: 1Answers: 10,467 Site admin

    The format that is sent to the server is documented here.

    Is there a way to parse it or just retrieve the edited cell?

    That very much depends upon what your server-side environment is. In PHP you'd use $_GET for the above.

    Allan

This discussion has been closed.