Originally by @samie
This does not work:
Slider slider = new Slider();
slider.setMin(500);
slider.setMax(1500);
Also this does not work:
Slider slider = new Slider(500,1500, 10);
but this does:
Slider slider = new Slider();
slider.setMax(1500);
slider.setMin(500);
Apparently there is something wrong how the value is updated when min/max are set.
Bonus: The ValueOutOfBoundsException should display some min/max information to help user to spot the errors.
Imported from https://dev.vaadin.com/ issue #16776
Originally by @samie
This does not work:
Also this does not work:
but this does:
Apparently there is something wrong how the value is updated when min/max are set.
Bonus: The ValueOutOfBoundsException should display some min/max information to help user to spot the errors.
Imported from https://dev.vaadin.com/ issue #16776