Example of Clipboard in ASP.NET Core Scheduler Control
This example demonstrates how to use clipboard operations (cut, copy, and paste) with Scheduler events, along with a context menu for additional actions.
DEMO
SOURCE
In this example, the Scheduler provides clipboard functionality allowing users to cut, copy, and paste events. Additionally, a context menu is available for more actions. The following features are demonstrated:
- Copy: Select one or multiple events and use the Copy button or context menu to copy them to the clipboard.
- Cut: Select one or multiple events and use the Cut button or context menu to move them to the clipboard, removing them from their original position.
Key points:
- Single-click selects a single event, replacing any previous selection.
- Ctrl+click allows for selecting multiple events.
- The clipboard is cleared after each copy or cut operation to prevent unintended duplications.
- Right-click to open the context menu for more options.
Note: This clipboard functionality operates within the Scheduler itself and does not interact with the system clipboard.