I am attempting to run a repeater on a dynamic sized array, but I am constantly getting strange results.
Often times the header and the data are part of the header AND the body at the same time, instead of the header only being displayed in the header and the body only being displayed in the body.
I am looking for an example of an accordion generating a number of panels equal to the size of my array.
HTML CODE
<!-- <ej-accordion>
<div *ngFor="let orderOptions of lookupValues">
<div>
<h3>TEST HEADER</h3>
<div>
<div>
<label>Date:</label> <span>exampleDate</span>
</div>
<div>
<label>Product:</label> <span>exampleProduct</span>
</div>
</div>
</div>
</div>
</ej-accordion> -->
Thank you