If a column header contains long text and I reduced the width of the column text wrapping is not working.
Column header Word wrap
Hi @suman.dutta
You can use this https://jsfiddle.net/L1fwsgvr/1/ to hide the header if it is too long. You can also use HTML to attach line break (<br>
) like here https://jsfiddle.net/AMBudnik/4txa581d/
Would that help?
Thanks, It has been solved for me with applying this css
.handsontable th {
white-space: normal!important;
}
Great. Thank you for the prompt update.