Tables with hidden in collapsed accordion panel are not properly sized

I have a table with cells that can be edited online. in order to accommodate for new content, table configuration defines ‘autoheight’ and “rowHeightColumn” attributes.
See example here : http://test.dunamare.nl/daafgeluk/example.html

There are two problems :

  1. when this table is inside of a collapsed panel, it’s not rendered properly.

  2. One column is re-sizable, but changing its width does not cause refresh and subsequent row height recalculation.

How can i fix these issues?

Try to call adjustRowHeight from onResize event handler:

...
on:{
    onResize: function() {
          this.adjustRowHeight( this.config.columns[1].id, true );
          webix.delay(function(){       
                this.resize();                    
           }, this);			          
     }
}
...

Maria, it worked!

Grazie mille!!!