Following http://danielcrisp.github.io/angular-rangeslider/demo I created a slider to change a price value.
<div range-slider min="5000000" max="1000000000" model-min="demo1.min" model-max="demo1.max"></div> {{demo1.max}}
In the place of {{demo1.max}}
instead of 5000000 I want to show 5 Million
. As the value reaches Billion, want to show like 1 Billion
. I know I have to write custom code for this, but how can I catch the change event of Angular rangeSlider? Can I change filter, filter-options from code?
Thanks.