Hi
I manage to apply CSS class to a header column as expected, but if i try to do a colspan on that header the CSS doesn’t apply anymore. When I inspect the DOM it looks like there is a new div with the colspan, that doesnt have the css class anymore.
Look at this snippet example.
https://snippet.dhtmlx.com/7o4elf48?_ga=2.48023844.2066356912.1616396032-271775343.1615363814
At line 5:
{ width: 150, id: “yearlyChange”, header: [{ text: “Yearly Change”, css: “title” }] },
^ this works as intended
{ width: 150, id: “yearlyChange”, header: [{ text: “Yearly Change”, colspan: 2, css: “title” }] },
^ this doesn’t work
Is this a bug, or am I using it wrong?