I was wondering how is it popssible to populate forms using JSON?
I have a JSON string which I get using php\'s json_encode() And I want to use the JSON
json_encode()
For a weird but valid JSON syntax like
[{'name':,'value':}, {'name':,'value':}, {'name':,'value':}, {'name':,'value':}]
look at this http://jsfiddle.net/saurshaz/z66XF/
We had this weird syntax being used in our application and we got around by writing the logic as above.