I am currently utilizing angularJS version 1.2.1 along with angular-ui-bootstrap.
Within my code, I have a collection of <ng-includes>
tags from angularjs and <accordion>
components from angular-ui.
When loading the content, I need to initiate a server call to retrieve certain values.
I managed to resolve this issue by referencing this resource.
However, I am encountering an obstacle with the accordion component as I am unable to access all scope variables within it.
While I can access the scope outside the accordion, the contents inside the accordion remain inaccessible.
I believe this problem stems from the way the accordion loads. Is there a method to verify that the accordion contents have been fully loaded? Perhaps we could implement a callback function to confirm when the accordion contents are loaded?