XML to JSON Converter Builder
Today I had the opportunity to use the xml to json converter builder for a project I'm working on and found that the documentation was a little lacking. Searching google for help netted me next to nothing so I figured it was time for a blog entry. Why is This Not Working? The key to getting this feature working is to understand that the builder on its own doesn't really do anything useful. It just provides a method that must be invoked somewhere else, some code that produces the JSON notation. The callback builder input field is text which is prepended to the output of this method. For example if I have these values with the following html in a page builder: <html> <head><title>Default Test Page</title></head> <body> <script type="text/javascript"> function dumpJson(json){ cons...