Is it possible to change max value when slider is already created and used? I tried that approach: <div ui-slider="slider.options" ng-model="period"></div> ``` $scope.slider = { options: { range: false, min: 1, max: $scope.selectedQuant.maxValue, step: 1 } }; ``` [....skip...] $scope.slider.options.max = $scope.selectedQuant.maxValue but it doesn't works.
Is it possible to change max value when slider is already created and used?
I tried that approach:
[....skip...]
$scope.slider.options.max = $scope.selectedQuant.maxValue
but it doesn't works.