I have a page that has a list of events that can be dragged to a FullCalendar.
After dragging all my events to FullCalendar and clicking the finish button I want to get a list, or something of that, with all events and on what date this event was placed.
How can I do this using FullCalendar in ASP.NET?
My Page (HTML)
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="FullCalendar._Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<div id='wrap'>
<div id='external-events'>
<h4>
Servicos Complementares</h4>
<div class='fc-event'>
Servico 1
</div>
<div class='fc-event'>
Servico 2
</div>
<div class='fc-event'>
Servico 3
</div>
<div class='fc-event'>
Servico 4
</div>
<div class='fc-event'>
Servico 5
</div>
<p>
<input type='checkbox' id='drop-remove' />
<label for='drop-remove'>
Remover após a escolha da data</label>
</p>
</div>
<div id='calendar'>
</div>
<div style='clear: both'>
</div>
</div>
</asp:Content>
Please note that on this page I have (Service 1, Service 2, Service 3, etc.).
I also have a FullCalendar in <div id='calendar'>
.
I drag these services (Service 1, Service 2, Service 3, etc.) into my FullCalendar, each on a specific date.
Here's how:
Now that the services are in the calendar I want, when I click on a button, get a list with the services that are in the calendar and with the respective date when each service is placed in the calendar.