'adjustRowHeight' of datatable after data reload

I have a datatable with 3 columns and this table has adjusted row height by first column.

webix.ui({ view: "datatable", id: "datatable", container: "my_table", autoheight:true, columns: my_columns, fixedRowHeight:false, data: my_data, ready:function(){ this.adjustRowHeight("first_column"); } });

At some point I use reloading of the data $$("datatable").load(my_url) and after it refreshes, the table doesn’t have adjustRowHeight property any more. Any idea how to save the rows height after data reload?

load() method has a callback, where you can readjust the height:

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

Thank you!