I have a text field that stores stores an array - formatted as either and HTTP POST or JSON array. Can I have this array displayed as a editable table?
HTTP POST:
items[0][Name]=Shirt&items[0][Quantity]=2&items[0][Price]=19.95&items[1][Name]=Jeans&items[0][Quantity]=3&items[0][Price]=89.99
JSON:
{“items”:
{"Name":"Shirt", "Quantity":"2", "Price":"19.95"}, {"Name":"Jeans", "Quantity":"3", "Price":"89.99"}, ]}