I'm using ngx-fullpage package with Angular 4. When I try to dynamically 
include the data using *ngFor loop the data is getting rendered on the page 
but the navigation icons are not appearing. Like in the below example, 
slide with content "1" and "2" is rendered correctly with 2 bullets 
appearing on the page for navigation however the bullets are not appearing 
for the data which is being rendered through *ngFor loop.

*page-content.component.html*

<div mnFullpage [mnFullpageNavigation]="true" 
[mnFullpageNavigationPosition]="right"> <div class="section welcome-section 
fp-section fp-table"> <div class="fp-tableCell"> 1 </div> </div> <div 
class="section welcome-section fp-section fp-table"> <div class="fp-tableCell"> 
2 </div> </div> <div class="section welcome-section fp-section fp-table" 
*ngFor="let section of sections"> <div class="fp-tableCell"> <app-question-card 
[data]="section" *ngIf="section.type == 'question-card'"></app-question-card> 
<app-flipping-card [data]="section" *ngIf="section.type == 
'flipping-card'"></app-flipping-card> </div> </div> </div>

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to