How to make the cell multiline when the cell contains very long word? I can’t make ‘word-break’ to work here
Snippet: http://webix.com/snippet/295a772e
How to make the cell multiline when the cell contains very long word? I can’t make ‘word-break’ to work here
Snippet: http://webix.com/snippet/295a772e
You need to change the default word-wrap
CSS attribute of the cells:
.webix_cell {
word-wrap:break-word;
}
Thanks a lot!