-
Notifications
You must be signed in to change notification settings - Fork 119
Open
Description
Hi I am using Range slider like this way
what i need to know slider does show modal-max value or current value changes instead of showing max value and also as well as min value at right most side.
Can you help me how to show maximum value?
<div class="row" ng-controller="DemoController">
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12">
<div class="" >
<strong>{{demo7.valueA}}</strong>
<div range-slider min="demo7.min" max="demo7.max" model-max="demo7.valueA" pin-handle="min"></div>
</div>
</div>
</div>
<script>
// basic angular app setup
var app = angular.module('myApp', ['ui-rangeSlider']);
app.controller('DemoController',
function DemoController($scope) {
$scope.demo7 = {
valueA: 50,
min : 10,
max : 90
};
}
);
</script>
Metadata
Metadata
Assignees
Labels
No labels