Accordion Clarification & a possible bug.

Hi,

  1. Is it possible to disable the expand & collapse functionality of Accordion?

  2. When I specify the auto height to accordion, expand and collapse section functionality of Accordion doesn’t work. Can you please provide the solution for this issue? Sample code is attached below.

{ header:"Technology Partners", height:"auto",
	body:{
							 view:"form",align:"center",
										elements: [
										
											{
												rows:[ 
													{cols:[
														{ 
														
															view:"list",
															select: true,
															templateItem: "#value#",
															data: webix.copy(techPartners)						
														}
													]}
													
												]
											}
										]
						}
					},

Regards,
Prashanth

You can use header sections, instead of accordion.
It looks very similar, but has not any expand|collapse functionality.
http://webix.com/snippet/45972ed8

As for second issue - do not use “height:‘auto’”, it is not expected value for height attribute. If you want to use auto-height, just do not define height at all.
http://webix.com/snippet/5e2e45c8

Perfect, thanks.