You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug on IOS rendering.
I want to create a Pager on changed array and it seems that this is an issue with rendering...it takes you the the second page and also black the page, so I should swipe left or right to get it live agian
I think example would be the best to describe it:
*** NS-Angular
TS:
import { Component } from "@angular/core";
@Component({
moduleId: module.id,
selector: "times-selection",
templateUrl: "./timesSelection.component.html"
})
export class TimesSelectionComponent {
public selectedDates: Array<Date> = [];
constructor() {
setTimeout(() => {
this.selectedDates = [new Date(), new Date()];
}, 5000)
}
}
but you can see that if you define the selectedDates in the beginning just like this public selectedDates: Array<Date> = [new Date(), new Date()]; it will work.
any idea why?
The text was updated successfully, but these errors were encountered:
Happen only on IOS
There is a bug on IOS rendering.
I want to create a Pager on changed array and it seems that this is an issue with rendering...it takes you the the second page and also black the page, so I should swipe left or right to get it live agian
I think example would be the best to describe it:
*** NS-Angular
TS:
HTML:
but you can see that if you define the
selectedDates
in the beginning just like thispublic selectedDates: Array<Date> = [new Date(), new Date()];
it will work.any idea why?
The text was updated successfully, but these errors were encountered: