thanks
Is there any way to support wordwrap in headers
Hi @swk777
the only seems to be to set a mechanism in the colWidths that adds
HTML element to break the line
colHeaders: function(col){
if(col === 1){
return `<div class="wrapped"> My Column<br> number ${col}</div>`
} else {
return col
}
}