Hi
I have a json file in the following format.
[{"collection_id":"1","collection_name":"Titles",
"properties":[{"property_id":"2","property_name":"name",
"property_data_type":"string","property_column_order":1}],
"values":[{"row":1,"row_values":[{"property_id":"3","property_value":"Mr."}]},
{"row":2,"row_values":[{"property_id":"4","property_value":"Ms."}]},
{"row":2,"row_values":[{"property_id":"5","property_value":"Missus"}]}]}]
I want to display it in following format in the kendo grid(just one column "name")
name
Mr
Ms
Missus
What would be the best way to map this.
Thanks In Advance.
I have a json file in the following format.
[{"collection_id":"1","collection_name":"Titles",
"properties":[{"property_id":"2","property_name":"name",
"property_data_type":"string","property_column_order":1}],
"values":[{"row":1,"row_values":[{"property_id":"3","property_value":"Mr."}]},
{"row":2,"row_values":[{"property_id":"4","property_value":"Ms."}]},
{"row":2,"row_values":[{"property_id":"5","property_value":"Missus"}]}]}]
I want to display it in following format in the kendo grid(just one column "name")
name
Mr
Ms
Missus
What would be the best way to map this.
Thanks In Advance.