Mo
Results
2
comments of
Mo
To answer your earlier question, the slider is not actually disabled when using a reactive form with formControlName. It does work with ngModel
I made a workaround by doing ` @HostListener('window:resize', ['$event']) onResize(event: Event) { let t = event.target as Window const calcWidth = t.innerWidth - 375; this.innerWidth = calcWidth + 'px'; }...