Scrollview + List with variable height items

Hi,

I am implementing a popup with log output. List widget has been chosen to represent the log data. Each message has different height, depending on the content. The problem I have encountered - when I set list’s type height property to auto scrolling does not work, it works fine when height is fixed. See this snippet: http://webix.com/snippet/33c14f95

Is it a bug or a feature? If it is feature is there a way to get scrolling and variable list items height?

Truly, in ui.list autoheight:true and type:{ height:"auto" } won’t work together, as it interrupts the rendering process.

But without any specified height the view will take all available space, i.e. fill the window. According to the snippet, I don’t see a reason to use the ui.scrollview. Please check the simplified code:

http://webix.com/snippet/4165122a

Great!

Thank you very much Listopad!!!