I am using Angular Material v2 md-slider
in a component
@Component({
selector: 'ha-light',
template: `<md-slider min="0" max="1000" step="1"
[(ngModel)]="myValue" (change)="onChange()"></md-slider>
{{myValue}}`,
styleUrls: ['./light.component.css']
})
export class LightComponent implements OnInit {
myValue = 500;
constructor() { }
ngOnInit() { }
onChange(){
console.log(this.myValue);
}
}
and myValue
updates just fine and onChange
method is being called but only when I stop sliding and release the mouse button.
Is there a way to have myValue
update and also have the function called as I am sliding the slider?
I have noticed aria-valuenow
attribute which is changing as I am sliding but I am not quite sure how to make a use of it for what I need (if it can be used at all).