<ejs-accordion expandMode='Multiple'>
<e-accordionitems>
<e-accordionitem expanded='true'></e-accordionitem>
.
.
.
</e-accordionitems>
</ejs-accordion> |
Hi Neo,
Greetings from Syncfusion Support.
We have validated your reported scenario at our end and prepared sample based on that. Let you know that, we can achieve your requirement by making use of following properties expandMode and expanded like below code snippet.
<ejs-accordion expandMode='Multiple'><e-accordionitems><e-accordionitem expanded='true'></e-accordionitem>...</e-accordionitems></ejs-accordion>
Kindly try the above sample and let us know if you have any concerns
Regards,Balasubramanian S
.e-acrdn-header-content,
.e-toggle-icon{
display: none !important;
} |
public changeHandler1(e) {
this.acrdnInstance.expandItem(e.checked, 0);
}
public changeHandler2(e) {
this.acrdnInstance.expandItem(e.checked, 1);
}
public changeHandler3(e) {
this.acrdnInstance.expandItem(e.checked, 2);
} |