Multiline cells in datatable with word-break

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;
}

http://webix.com/snippet/7bcbe535

Thanks a lot!