Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to show max value at the end slide and min value #102

Open
pgksunilkumar opened this issue Sep 27, 2016 · 0 comments
Open

How to show max value at the end slide and min value #102

pgksunilkumar opened this issue Sep 27, 2016 · 0 comments

Comments

@pgksunilkumar
Copy link

pgksunilkumar commented Sep 27, 2016

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant