1
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 like that, with all the 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>
Note that on this page I have (Service 1, Service 2, Service 3, etc).
I also a Fullcalendar on <div id='calendar'>
.
I drag these services (Service 1, Service 2, Service 3, etc) into my Fullcalendar, each on a specific date.
See how it looks:
Now that the services are in the calendar I want, by clicking on a button, to get a list of the services that are in the calendar and with the respective date that each service is positioned in the calendar.
I don’t quite understand your question, you can post the code ?
– PauloHDSousa
@Paulohdsousa added more information and code snippets to make my question clearer.
– Leonardo Ribeiro de Aguiar
Why not use the ASP.NET Calendar?
– PauloHDSousa
@Paulohdsousa He doesn’t meet my needs.
– Leonardo Ribeiro de Aguiar