Slider directive implementation for AngularJS, without jQuery dependencies
This project is maintained by prajwalkman
Slider directive implementation for AngularJS, without jQuery dependencies. Requires AngularJS v1.1.4 or higher (optional isolate scope bindings support).
<ul>
<li ng-repeat="item in items">
<p>Name: {{item.name}}</p>
<p>Cost: {{item.cost}}</p>
<slider floor="100" ceiling="1000" step="50" precision="2" ng-model="item.cost"></slider>
</li>
</ul>
Name: {{item.name}}
Cost: {{item.cost}}
<ul>
<li ng-repeat="position in positions">
<p>Name: {{position.name}}</p>
<p>Minimum Age: {{position.minAge}}</p>
<p>Maximum Age: {{position.maxAge}}</p>
<slider floor="10" ceiling="60" ng-model-low="position.minAge" ng-model-high="position.maxAge"></slider>
</li>
</ul>
Position Name: {{position.name}}
Minimum Age: {{position.minAge}}
Maximum Age: {{position.maxAge}}
Raw data can be formatted as text using the translate attribute. In your controller:
$scope.currencyFormatting = function(value) { return value.toString() + " $" }
And your HTML:
<slider floor="100" ceiling="1000" precision="2" ng-model="item.cost" translate="currencyFormatting"></slider>
Name: {{item.name}}
Cost: {{item.cost}}
Potatoes cost
Attach a class to the slider to override the slider's width to inline it amongst your text.