search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

How to be locked some of the events from the database : Javascript

Asked by Cholly3
10 years ago.

I can't use ".eventMoveHandling" because it lock all events.

Answer posted by Dan Letecky [DayPilot]
10 years ago.

You can use 'moveDisabled' property:

var e = new DayPilot.Event({
  start:new DayPilot.Date(), 
  end:(new DayPilot.Date()).addHours(5), 
  id: DayPilot.guid(), 
  text: "New Event", 
  resource:'E',
  moveDisabled: true
});

See also:
http://api.daypilot.org/daypilot-event-data/

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.