vote up 0 vote down star

I basically have the following flow:

XML -> JSON -> Spring MVC -> jsp page, which is displayed as a table with editable fields.

How do make is so that when i edit a field value it correct updates the Json Object?

I have used some nasty hacking at the moment, as i know (testing) the values/object I am going to get, so im just parsing the JSON string in javascript and sending that back.

So i can then just convert the json object (with new values) and post it back.

Cheers.

flag

64% accept rate

1 Answer

vote up 1 vote down check

You could use the serialize method from prototypejs.

http://www.prototypejs.org/api/form/serialize

just by calling .serialize() you'll be able to get the updated object.

link|flag

Your Answer

Get an OpenID
or

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