6coloquio/js/fullcalendar/sched/demos/ordering.html
German Correa 2cf39613da Agrega plenaria de Umberto
Agrega facebbok y comentarios en el sidebar
mejora link de cronograma
2017-11-28 17:23:51 -03:00

113 lines
3.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link href='../lib/fullcalendar.min.css' rel='stylesheet' />
<link href='../lib/fullcalendar.print.min.css' rel='stylesheet' media='print' />
<link href='../scheduler.min.css' rel='stylesheet' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../lib/fullcalendar.min.js'></script>
<script src='../scheduler.min.js'></script>
<script>
$(function() { // document ready
$('#calendar').fullCalendar({
now: '2017-10-07',
editable: true,
aspectRatio: 1.8,
scrollTime: '00:00',
header: {
left: 'today prev,next',
center: 'title',
right: 'timelineDay,timelineThreeDays,agendaWeek,month'
},
defaultView: 'timelineDay',
views: {
timelineThreeDays: {
type: 'timeline',
duration: { days: 3 }
}
},
resourceAreaWidth: '30%',
resourceColumns: [
{
labelText: 'Room',
field: 'title'
},
{
labelText: 'Occupancy',
field: 'occupancy'
}
],
resourceOrder: '-occupancy,title', // when occupancy tied, order by title
resources: [
{ id: 'a', title: 'Auditorium A', occupancy: 40 },
{ id: 'b', title: 'Auditorium B', occupancy: 40, eventColor: 'green' },
{ id: 'c', title: 'Auditorium C', occupancy: 40, eventColor: 'orange' },
{ id: 'd', title: 'Auditorium D', occupancy: 40 },
{ id: 'e', title: 'Auditorium E', occupancy: 40 },
{ id: 'f', title: 'Auditorium F', occupancy: 40, eventColor: 'red' },
{ id: 'g', title: 'Auditorium G', occupancy: 40 },
{ id: 'h', title: 'Auditorium H', occupancy: 40 },
{ id: 'i', title: 'Auditorium I', occupancy: 50 },
{ id: 'j', title: 'Auditorium J', occupancy: 50 },
{ id: 'k', title: 'Auditorium K', occupancy: 40 },
{ id: 'l', title: 'Auditorium L', occupancy: 40 },
{ id: 'm', title: 'Auditorium M', occupancy: 40 },
{ id: 'n', title: 'Auditorium N', occupancy: 80 },
{ id: 'o', title: 'Auditorium O', occupancy: 80 },
{ id: 'p', title: 'Auditorium P', occupancy: 40 },
{ id: 'q', title: 'Auditorium Q', occupancy: 40 },
{ id: 'r', title: 'Auditorium R', occupancy: 40 },
{ id: 's', title: 'Auditorium S', occupancy: 40 },
{ id: 't', title: 'Auditorium T', occupancy: 40 },
{ id: 'u', title: 'Auditorium U', occupancy: 40 },
{ id: 'v', title: 'Auditorium V', occupancy: 40 },
{ id: 'w', title: 'Auditorium W', occupancy: 40 },
{ id: 'x', title: 'Auditorium X', occupancy: 40 },
{ id: 'y', title: 'Auditorium Y', occupancy: 40 },
{ id: 'z', title: 'Auditorium Z', occupancy: 40 }
],
events: [
{ id: '1', resourceId: 'b', start: '2017-10-07T02:00:00', end: '2017-10-07T07:00:00', title: 'event 1' },
{ id: '2', resourceId: 'c', start: '2017-10-07T05:00:00', end: '2017-10-07T22:00:00', title: 'event 2' },
{ id: '3', resourceId: 'd', start: '2017-10-06', end: '2017-10-08', title: 'event 3' },
{ id: '4', resourceId: 'e', start: '2017-10-07T03:00:00', end: '2017-10-07T08:00:00', title: 'event 4' },
{ id: '5', resourceId: 'f', start: '2017-10-07T00:30:00', end: '2017-10-07T02:30:00', title: 'event 5' }
]
});
});
</script>
<style>
body {
margin: 0;
padding: 0;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
font-size: 14px;
}
p {
text-align: center;
}
#calendar {
max-width: 900px;
margin: 50px auto;
}
</style>
</head>
<body>
<p>Ordered by occupancy (descending)</p>
<div id='calendar'></div>
</body>
</html>