I'm working on an Ionic 2 app and playing around with the range, as described here: https://ionicframework.com/docs/v2/api/components/range/Range/
Call me crazy, but I can't find anywhere on google how the range component can call a method in my .ts class once the value has changed.
Something like a button, which goes like this:
<button ion-button (click)="myMethod($event)">
Of course, I need the value of the slider. In my case I defined it as follows:
<ion-range min="0" max="10" color="danger">
<ion-label range-left>0</ion-label>
<ion-label range-right>10</ion-label>
</ion-range>
Anyone got an idea?