This example illustrates how to drag and drop events between the DataGrid and the Scheduler.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Timeline estimation 3:30 AM - 5:30 AM Project Review 5:45 AM - 7:30 AM Project Review 8:30 AM - 10:30 AM Project Preview 12:30 PM - 2:30 PM Manual testing 3:45 AM - 6:15 AM Developers Meeting 9:00 AM - 11:00 AM Manual testing 12:00 PM - 2:00 PM |
Task | Duration |
---|---|
Test report validation | 3 Hours |
Timeline estimation | 4 Hours |
Workflow Analysis | 2 Hours |
Quality Analysis | 5 Hours |
Cross-browser testing | 1 Hour |
Resolution-based testing | 3 Hours |
Project Preview | 6 Hours |
Developers Meeting | 2 Hours |
Test case correction | 7 Hours |
Debugging | 4 Hours |
Exception handling | 5 Hours |
Bug fixing | 1 Hour |
Bug Automation | 3 Hours |
Bug fixing | 6 Hours |
In this example, the DataGrid's allowRowDragAndDrop
and rowDropSettings
are used to drag
and drop items from the DataGrid to the Scheduler. The rowDrop
event of the DataGrid is triggered when an item
is dropped to the Scheduler. Within the rowDrop
event, the addEvent
method
is used to add the dropped item to the target Scheduler, and the deleteRecord
method is used to remove
the dragged item from the DataGrid.
For Scheduler to DataGrid, eventDragArea
is used to drag a range of events. The dragStop
event of the Scheduler is triggered when an item is dropped from the Scheduler to the
DataGrid. Within the dragStop
event, the DataGrid's addRecord
method is used to add the
dropped event to the target DataGrid, and the deleteEvent
method is used to remove the dragged event from the
Scheduler.