Skip to content

kashban/ionRangeSlider-Angular-Directive

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

ionRangeSlider-Angular-Directive

Angular.js directive for popular jquery plugin ionRangeSlider with updatable attributes

How To Use

Specify 'ionSlider' as the dependency of your module.

In your html use

<ionslider></ionslider>

Following attributes can be used inside tag:

min, (updatable)
max, (updatable)
type,
prefix,
max-postfix,
prettify,
grid,
grid-margin,
postfix,
step,
disable, (updatable)
hide-min-max,
hide-from-to,
from (updatable)

Value Change Events

You can also set the change event in the tag

<ionslider on-change='rangeChangeCallback'></ionslider>

In your controller

$scope.rangeChangeCallback = function(sliderObj){ var changedValue = sliderObj.from; }

Drag Finish Events

To get notified when the User releases the handle, add a event handler function like this:

<ionslider on-finish='rangeFinishCallback'></ionslider>

In your controller

$scope.rangeFinishCallback = function(sliderObj){ var newValue = sliderObj.from; }

Example HTML

 <ionslider type="single"
        grid=true
        min="model.min"
        max="model.max"
        from="model.currentValue"
        disable="model.disabled"
        on-change="rangeChangeCallback"
        on-finish="rangeFinishCallback"></ionslider>

About

Angular.js directive for popular jquery plugin ionRangeSlider

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%