I'm working on a generic front end for SQL queries in my application, and would like to offer a preview feature that present query results.
Query results are returned in JSON format from a web service, and the JSON layout is of course completely different from query to query.
Result should be presented in a fully dynamic way, and look something like this:
Column 1 Column 2 Column 3
aaaaaaa bbbbbbbb ccccccc
.
.
.
Both column headers (from json key) and row content (from json value) should be generated in code, with or without the use of template libraries.
Any suggestions on what is the easiest and/or most efficient approach?
