Recurring events: Drag Move

Hi,

Is there a way to set scheduler.config.drag_move = false for recurring event type only? I.E. we want to lock recurring events so the user does not move a recurring event by accident. All other events, however, we want the user to be able to drag move.

Regards,
JaiDesign

Something like next can be used

scheduler.attachEvent("onBeforeDrag", function(id){ if (scheduler.getEvent(id).rec_type) return false; return true; });