hoangnm / react-native-week-view

Week View Component for react-native
MIT License
322 stars 97 forks source link

How can i disable drag and drop on specific events ? #166

Closed Salmankhan033 closed 2 years ago

Salmankhan033 commented 2 years ago

I add multiple event with different types, Now I want to disable drag and drops for some events

pdpino commented 2 years ago

That cannot be done at the moment.

We can add it, something like passing to each event that should not drag: disableDrag: true.

It should be straightforward to implement this

Salmankhan033 commented 2 years ago

I did it in from node-modules, In Event file line no 308 onDrag={onDragEvent && item.data.type != "workingHours" && item.data.type !="timeOff" && this.onDragEvent}