Datatable subview

Hi,
Anybody has a slight idea what’s wrong with this script? I’ve spent hours, can’t really notice what’s different about it. It needs to display parents data in sort of sub-row tables.

https://webix.com/snippet/165fcb5f

Well, it may seem “another subview question” kind, but io really went throught the docs, number of examples, and forum, and i still can’t find what’s breaking it.

you need to add autoheight:true to subview
also remove id from subview config to prevent other bugs

@intregal I swear i’ve tried it. Probably have set it in main object. Learning webix integration from within Vue makes it not easier. Thank you so much, sir!

exectly same problem here but I load data on onSubviewCreate event.
“autoHeight: true” in subview component dont change anything.
I must put the component’s height to a fixed value but rows are always with height:0px

@Guillaumem59 can you please provide the problematic config?
Note that autoheight has to be specified in a lowercase.
Please check also the following sample: https://webix.com/snippet/86a5e3ca

thanks for the answer @Listopad
i found temporary solution with resizing solution the view after data loading

see https://webix.com/snippet/8c61586b

I will try with lowercase “h” but I’m thinkig that i will have some problems later because i’m a camelCase addict in js :wink:

work fine with lowercase “h” of autoheight thanks a lot!