I am using backbone combined with Webix to create my application. The problem i have run into is that with the accordion i don’t seem to be able to figure out how to make it auto size. Similar to : Accordion | jQuery UI
It should expand to the height of the rows body content. Without me having to explicitly set the height (on each row or for the whole accordion).
I am using the WebixView (backbone view implementation):
JSBIN code snipped ( not functional! )
Hopefully somebody can tell me the answer since its probably something very small i forgot to set.
If you want to size the accordion to the inner content, you need to set the height for the cells, or use autoheight attribute ( in such case the height will be set based on size of content )
Check http://webix.com/snippet/424ef940
It is the same as your code, I only have removed height:“auto” option ( height property can have only numerical value )