I have a json of below format -
{"name":"abc","id":"101","age":"22"}
I want to display this json in Bootsfaces Table with key as one column and values as other column.
My approach is to convert this json to List (Keys in one list and Values in another list)and then pass to 2 different columns in Table.
ListOfKeys - [name , id , age]
ListOfValues - [abc , 101 , 22]
But I am not finding any easy approach to display these lists to Table in separate columns.
Can anyone please suggest programmatically..how to convert List to Bootsfaces Table
or any other easy approach for converting json to Table?
I am just a beginner.Any help would be appreciated.Thankyou.