Hi i was wondering if any has heard of a Java component that provides a range slider. A slider, that is, with two knobs that define a range in the min max values rather than just one.
I found on the web a JRangeSlider in the perfuse library but i have two issues with it.
First (and not that important) is that it has it's own visual style and does not change and blend in with the used look and feel.
Second (and REALLY important for my app) is that when you setEnable(false) on it nothing happens!! You can still use the slider. The reason i want to disable it is that i have a new thread running at some point in my program that alters a value that the range slider also affects. I want to simply disable the slider while my thread is running and enable it after that.
Any thoughts?