-
-
Notifications
You must be signed in to change notification settings - Fork 493
Closed
Description
Hi, I'm trying set a limit on a second slider (car_loan_excess) based on the current value of another slider (car_loan_amount). I don't want the second slider to extend above the main slider value. I tried using the MaxLimit but that didn't do anything (maxLimit: car_loan_amount), so I'm not sure if this is possible. Any suggestions?
$scope.car_loan_amount = {
minValue: 25000,
options: {
floor: 500,
ceil: 50000,
step: 500,
precision: 0,
draggableRange: false,
showSelectionBar: false,
hideLimitLabels: false,
readOnly: false,
disabled: false,
showTicks: false,
showTicksValues: false
}
};
$scope.car_loan_excess = {
minValue: 0,
options: {
floor: 0,
ceil: 50000,
step: 500,
precision: 0,
maxLimit: car_loan_amount,
draggableRange: false,
showSelectionBar: false,
hideLimitLabels: false,
readOnly: false,
disabled: false,
showTicks: false,
showTicksValues: false
}
};
Metadata
Metadata
Assignees
Labels
No labels