# FullCalendar

The [FullCalendar ](https://fullcalendar.io)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.

![](https://2248866391-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MFp7MR1wemvcC5891_r%2F-MiWtiWTdz2ZBu1Rt96j%2F-MiWtnpzFOSIXOKfguxw%2Fimage.png?alt=media\&token=d0e06310-8248-452f-be01-e9034ab43a5a)

{% embed url="<https://github.com/iceteagroup/wisej-extensions/tree/master/Wisej.Web.Ext.FullCalendar>" %}
FullCalendar Source Code
{% endembed %}

## Features

* Drag-and-drop events
* Colorbox - open events in a lightbox
* Google Calendar support
* Event coloring
* RTL support

## Code Example: Add An Event

```csharp
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.

{% embed url="<https://www.nuget.org/packages/Wisej-3-FullCalendar>" %}

[FullCalendar ](https://docs.wisej.com/extensions/extensions/fullcalendar/api/wisej.web.ext.fullcalendar.fullcalendar)is a quite complex control supporting several [view types](https://docs.wisej.com/extensions/extensions/fullcalendar/api/wisej.web.ext.fullcalendar.viewtype). Please refer to the [FullCalendar documentation](https://fullcalendar.io/docs) for more information.

{% hint style="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.
{% endhint %}

{% hint style="info" %}
Find more information in our FullCalendar example in [C#](https://github.com/iceteagroup/wisej-examples/tree/master/FullCalendar) or in [VB.NET](https://github.com/iceteagroup/wisej-examples-vb/tree/main/FullCalendar).
{% endhint %}

{% hint style="info" %}
You can try the FullCalendar extension [online](http://demo.wisej.com/FullCalendar).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wisej.com/extensions/extensions/fullcalendar.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
