FullCalendar
The FullCalendar extension is an amazing full-size drag-n-drop event calendar. Supports multiple views, flexible events, custom styles, integrates with Google Calendars, and it’s completely integrated with Wisej.NET.
-0c00cebe33359741862c9ca9e6d6a0d0.png)
Features
- Drag-and-drop events
- Colorbox - open events in a lightbox
- Google Calendar support
- Event coloring
- RTL support
Code Example: Add An Event
var newEvent = new Wisej.Web.Ext.FullCalendar.Event
{
Title = "My New Event",
Start = DateTime.Today.AddHours(9),
End = DateTime.Today.AddHours(10),
AllDay = false
};
fullCalendar1.Events.Add(newEvent);
fullCalendar1.Update();
How to Use
The FullCalendar extension can be added to a Wisej.NET project using NuGet Package Manager.
FullCalendar is a quite complex control supporting several view types. Please refer to the FullCalendar documentation for more information.
warning
To use the scheduler view you need to specify a SchedulerLicenseKey:
See https://fullcalendar.io/scheduler
Use "GPL-My-Project-Is-Open-Source" for GPL projects, or "CC-Attribution-NonCommercial-NoDerivatives" for non commercial projects.
info
You can try the FullCalendar extension online.