[Solved] Populate heading each row in JavaScript
Basically, what you’re trying to do is group your data by group property, and then form some HTML out of it. Grouping is easy, then just use whatever language you’re comfortable with to build the html: const list = [{ ‘name’: ‘Display’, ‘group’: ‘Technical details’, ‘id’: ’60’, ‘value’: ‘Something’ }, { ‘name’: ‘Manufacturer’, ‘group’: ‘Manufacturer’, … Read more