Hi Ahman,
We have checked your reported problem. We suspect that you have rendered our Slider component into Draggable Element. You can block the particular dragging target area using dragStart event of Draggable plugin, please check the below code block.
|
[Script]
$('.frame').ejDraggable({
helper: function (event) {
return $(event.element);
},
dragStart:"sliderMovementBlock"
});
function sliderMovementBlock(args){
if (args.target.classList.contains("e-slider") || args.target.classList.contains("e-handle")) {
args.cancel = true;
}
} |
For your reference, we have prepared simple demo sample, please check it in below location.
To know more details about Draggable Plugin properties, please check the below documentation.
Please let us know, if the provided information’s is resolved the problem. If not, please reproduce the problem in our sample and revert with replication procedure.
Regards,
Ashokkumar B.