Search found 14 matches

Do this on scheduler .
Remove all the resources and events from scheduler two and try to drop on empty space of scheduler
    scheduler2.on({
       eventDrop: ({context,eventRecords}) => {
            console.log(1);
        }
    })
Then the above function doesn't get executed
In the drag between scheduler . I have one feature that I am trying to implement . I have attached the scheduler demo . If you run you can see that it has one feature that if a event moved from unassigned_scheduler to assigned_scheduler then their corresponding resource also gets removed and when I ...
In that options for drag and drop between scheduler . Set allowOverlap:false options in both scheduler . Try moving event from first scheduler to second scheduler where there is event . If you do that it overlaps instead of going back to first scheduler
Is there a way to hide this menu https://imgur.com/a/yZjYLfn on the right click . :D
In the example of moving data between schedulers . Put only two resources on the first scheduler and there will spaces in first scheduler . Try drag event from second scheduler to the free space on first scheduler . If you drop it then the event gets disappeared . Shouldn't it should be moved to bac...
I encountered a bug in the eventtooltip while moving data from one scheduler to another . The following is the step when the bug occurs .
Move one event from one scheduler to another . Hover on any event from where the event was moved and placed to another . The hover shows nothing there
I have attached the file . See this line of code scheduler1.on({ eventDrop: ({source, eventRecords, context}) => { let eventRecord = eventRecords[0]; eventRecord.startDate = eventRecord.originalData.startDate; eventRecord.endDate = eventRecord.originalData.endDate; } }); It is used so that when the ...
I am working on a project in which the startTime and endtime should be same when moved from one resource to another resource scheduler.on({ eventDrop: ({source, eventRecords, context}) => { if (context.unAssignedTask) { //Data from another schedule let resources = unassigned_scheduler.resources; for...
I am working on a scheduler project . What I want is to horizontally resize the grid . Something like this https://imgur.com/a/rohyiEf . Is there a way to do that.
Ok thanks for the reply