-
Notifications
You must be signed in to change notification settings - Fork 27.4k
ng-model does not set initial value and position of input[type=range] #6726
Comments
This is still an issue with Angular 1.2.14: http://jsfiddle.net/HVp2J/7/ |
As a work-around, one can set the model value within a $timeout handler. |
$timeout doesn' help, the issue remains. |
@Rajat-Chowdhary Sorry, I should have included a code sample showing how $timeout can work as work-around: http://jsfiddle.net/fschwiet/YC4av/ The workaround does feel dicey since the model value cannot be initialized until the $timeout callback for the workaround to work. |
It seems I found the problem.
|
Here there is the new version of ngRange without private scope:
|
this is still an issue, right? |
Yep +1 |
Yes, still an issue. |
I asked something similar in stackoverflow How to initialize the value of an input[range] using AngularJS when value is over 100 . Using 1.4.0-beta.build.3791 this bug is still present. |
+1 |
+1, and it became worst when the input range is coupled with an input number. |
+1 for this issue |
Facing the same problem: +1 |
yep - same problem +1 |
this is basic html5 - whats the status on this, is anyone working on this? |
taking under consideration this: danielcrisp/angular-rangeslider#51 angular.module('common').directive('rangeSlider', [function () {
return {
replace: true,
restrict: 'E',
require: 'ngModel',
template: '<input type="range"/>',
link: function (scope, element, attrs, ngModel) {
var ngRangeMin;
var ngRangeMax;
var ngRangeStep;
var value;
function init() {
if (!angular.isDefined(attrs.ngRangeMin)) {
ngRangeMin = 0;
} else {
scope.$watch(attrs.ngRangeMin, function (newValue, oldValue, scope) {
if (angular.isDefined(newValue)) {
ngRangeMin = newValue;
setValue();
}
});
}
if (!angular.isDefined(attrs.ngRangeMax)) {
ngRangeMax = 100;
} else {
scope.$watch(attrs.ngRangeMax, function (newValue, oldValue, scope) {
if (angular.isDefined(newValue)) {
ngRangeMax = newValue;
setValue();
}
});
}
if (!angular.isDefined(attrs.ngRangeStep)) {
ngRangeStep = 1;
} else {
scope.$watch(attrs.ngRangeStep, function (newValue, oldValue, scope) {
if (angular.isDefined(newValue)) {
ngRangeStep = newValue;
setValue();
}
});
}
if (!angular.isDefined(ngModel)) {
value = 50;
} else {
scope.$watch(
function () {
return ngModel.$modelValue;
},
function (newValue, oldValue, scope) {
if (angular.isDefined(newValue)) {
value = newValue;
setValue();
}
}
);
}
if (!ngModel) {
return;
}
ngModel.$parsers.push(function (value) {
var val = Number(value);
if (val !== val) {
val = undefined;
}
return val;
});
}
function setValue() {
if (
angular.isDefined(ngRangeMin) &&
angular.isDefined(ngRangeMax) &&
angular.isDefined(ngRangeStep) &&
angular.isDefined(value)
) {
element.attr("min", ngRangeMin);
element.attr("max", ngRangeMax);
element.attr("step", ngRangeStep);
element.val(value);
}
}
function read() {
if (angular.isDefined(ngModel)) {
ngModel.$setViewValue(value);
}
}
element.on('change', function () {
if (angular.isDefined(value) && (value != element.val())) {
value = element.val();
scope.$apply(read);
}
});
init();
}
};
}
]); |
+1, I have the same problem when switching[input type=range] with ng-if |
I also ran into this problem, and wrote a Stack Overflow question about it, “In Angular, bind attribute from scope variable before ngModel binds the input’s Some workarounds have been posted as answers on Stack Overflow. The one applicable to my case involves using DOM manipulation with |
My lazy way of addressing this bug was to divide the min/max and step values by 100. So 300 becomes 3.0, etc. and values fall below 100. Then I multiply things back as needed. Perhaps it's useful to someone. |
+1 This is very annoying. |
+1 |
2 similar comments
+1 |
+1 |
Another lazy workaround hack:
|
+1 |
With GitHub’s new Reactions feature, you no longer need to comment “+1”. Instead, you can mark your interest by clicking the “+:smile:” at the top-right of the first comment in this issue, then choosing :+1: (“+1”). This avoids sending a useless notification to everyone subscribed to this issue. |
I have solved my problem using ondrag method by removing ng-model. |
+1 |
1 similar comment
+1 |
Adding ng-init to input works for me to set initial value
Found solution in: |
We are working on this (finally). Closing as a duplicate of #5892 |
$(document).ready(function () { this jQuery workaround works so you can set a value when the page loads but whatever ithe value of the slider controls wont sync until it's touched. |
@davedx Maybe this is the best way before the issue is solved. |
|
Basically, a range input is set up with an initial value using ng-model. The actual value of the HTML element, and the position of the range slider, are incorrect. I would expect the slider position and html input value to be in sync with the model variable.
Here is a repro: http://jsfiddle.net/fschwiet/HVp2J/
Verified on chrome and firefox running on Windows 8.
I see there are other issues opened for input[type=range], its not clear they are related.
The text was updated successfully, but these errors were encountered: