How is it possible in your excellent component? May be I can do it by my self if you help me with some advice.
I don't understand your use case, it's weirdo, can you provide more info?
Close for no response.
@ihhha You can use css pointer-events (http://caniuse.com/#search=pointer-events) to have this functionality.
.rc-slider {
pointer-events: none;
.rc-slider-handle {
pointer-events: auto;
}
}
@kvrmd Thanks. Finally I've used CSS. But just decrease rc-slider height so it's hard to click on it to move handler )
Most helpful comment
@ihhha You can use css
pointer-events(http://caniuse.com/#search=pointer-events) to have this functionality.