I am currently utilizing UI-Bootstrap Accordion to populate content from a JSON Object. My goal is to have the first accordion group open by default upon loading, but unfortunately, this feature is not working as expected.
Although I have set is-open to true, it still doesn't seem to be functioning properly. For reference, please take a look at the following Plunker:
<uib-accordion close-others="oneAtATime">
<uib-accordion-group ng-repeat="faq in FAQs" is-open="this.open">
<uib-accordion-heading>
<div>{{faq.title}}<i class="pull-right glyphicon" ng-class="{'glyphicon-chevron-up': this.open, 'glyphicon-chevron-down': !this.open}"></i>
</div>
</uib-accordion-heading>
<div ng-bind-html="faq.content"></div>
</uib-accordion-group>
</uib-accordion>
Thank you for your assistance.