I have a simple dropdown list that when an item is selected, it returns a table of results from a dataset.
Is it possible to span a row header to cover multiple colums? eg. I have 5 colums in my dataset each with a different ‘specialism’ but I would like these to be displayed under one header column?
I only have limited coding experience so for now I am just using the following and repeating to display the other columns.
$w.onReady( function () {
$w(“#table1”).columns = [{
“id”: “col1”,
“dataPath”: “specialism”,
“label”: “Specialism”,
“width”: 80,
“visible”: true ,
“type”: “string”,
},
];
});
Many thanks!