Open
Description
I'm trying to create table like http://i.imgur.com/txmc4Rb.png from json object.
Could you please advice how JSON should looks like to get this table?
I've tries this
[
{"Title1": "Col1", "Title2": "Col2", "Title3": "Col3"},
{"Title1": "Col1Row1",
"Title2":["Col2Row1", "Col2Row2"],
"Title3":["Col3Row1", "Col3Row2"]
}
]
But it's just merge Col2Row1 and Col2Row1 into single cell.