Data table row wrap

Hi Webix team,

https://snippet.webix.com/8i3ptawu

In above snippet I am trying to wrap my data but data is not completely getting shown in table cell.

Thanks

Hello,

You can apply CSS style. Just use word-wrap property:

 .webix_ss_body .webix_ss_center div {
  word-wrap: break-word;         
 }

@Nastja

If I am using that word-wrap property -Code Snippet

I am not able to see all data of cell.
Please check above snippet

Hello,

You can use onResize event and add adjustRowHeight

onResize:webix.once(function(){ 
      this.adjustRowHeight("title", true); 
    }),

Please check the example: https://snippet.webix.com/pnsycmol

Also, it’s possible to use resizeColumn: trueand adjustRowHeight

  resizeColumn:true,
    ready:function(){
                this.adjustRowHeight("title");
              },

Sample: https://snippet.webix.com/cgge09jk