Change width column and change height rows.

Hi.
Is possible by changing the column width adjust the height of the rows? I tried it with this example

http://webix.com/snippet/34652e34

but not working properly, I’m definitely doing something wrong …
Thank you in advance

I’d suggest to add refreshColumns().
For example:

<code class="js">
$$("grida").attachEvent("onColumnResize", function(id){
  this.adjustRowHeight("title", true);
  <b>this.refreshColumns();</b>
});
`

Just remove second parameter

this.adjustRowHeight("title", true);

Second parameter instructs to resize rows but do not repaint the datatable after that ( it can be usefull if you plan to call this.refresh or this.refreshColumns later )

http://webix.com/snippet/e20c13f3

Thanks to both of you for your help