How to AdjustRowHeight while Data is from Parse function

Hello webix,

i want to ask something, how to add AdjustRowHeight while the Data is from Parse function?
sample : https://snippet.webix.com/6xgp0ifd

Thank You

Hello,
Here’s how you do it:

  1. you can call AdjustRowHeight method after parsing the data:
d.adjustRowHeight("title");
  1. if you need to adjust data after the initial data is loaded (either with parse or load), call column adjustment in the ready handler:
ready:function(){ 
    this.adjustRowHeight("title");      
  }

https://snippet.webix.com/j00ngjxn

Great, Thank you :smile: