Hi @maheswaraiah_m
Add this JS in a clientlib with category cq.wcm.edit:
CQ.WCM.on("editablesready", function () {
CQ.WCM.getEditables().forEach(function (e) {
if (e.type === "myproject/components/nonmovable") {
e.dragger = null; // disable dragging
e.dropTargets = []; // disable moving
}
});
});
Hope this helpful:)
Regards,
Karishma.