I am in possession of an array structured as such:
var publicArray={
"settings": [{
"id": "1",
"deleted": "0",
"data": [{
"title": " Business Unit",
"value": "B1"
},
{
"title": "Comp ",
"value": "C1"
},
{
"title": " Pa Id",
"value": "P1"
}, {
"title": " NPI",
"value": "4535"
}
]
}, {
"id": "2",
"deleted": "0",
"data": [{
"title": " Business Unit",
"value": "B2"
},
{
"title": "Comp ",
"value": "C2"
},
{
"title": " Pa Id",
"value": "P2"
}, {
"title": " NPI",
"value": "34242"
}
]
}]
};
This data originates from a database and is subject to expansion, implying that additional rows will be added to the array over time.
In order to display this information effectively, I am seeking guidance on how to populate an HTML table resembling the image found here.
Having limited experience in this area, any assistance provided would be greatly appreciated.