Przeglądaj źródła

eventTransform test

Adam Shaw 13 lat temu
rodzic
commit
cccb67f056
1 zmienionych plików z 108 dodań i 0 usunięć
  1. 108 0
      tests/event_transform.html

+ 108 - 0
tests/event_transform.html

@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel='stylesheet' href='../build/out/fullcalendar/fullcalendar.css' />
+<link rel='stylesheet' href='../build/out/fullcalendar/fullcalendar.print.css' media='print' />
+<script src='../build/deps.js'></script>
+<script src='../build/out/fullcalendar/fullcalendar.js'></script>
+<script>
+
+	$(document).ready(function() {
+	
+		var date = new Date();
+		var d = date.getDate();
+		var m = date.getMonth();
+		var y = date.getFullYear();
+		
+		$('#calendar').fullCalendar({
+			header: {
+				left: 'prev,next today',
+				center: 'title',
+				right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
+			},
+			editable: true,
+
+			eventTransform: function(event) {
+				var copy = $.extend({}, event);
+				copy.title += "*";
+				return copy;
+			},
+			events: {
+				eventTransform: function(event) {
+					var copy = $.extend({}, event);
+					copy.title += "!";
+					return copy;
+				},
+				events: [
+					{
+						title: 'All Day Event',
+						start: new Date(y, m, 1)
+					},
+					{
+						title: 'Long Event',
+						start: new Date(y, m, d-5),
+						end: new Date(y, m, d-2)
+					},
+					{
+						id: 999,
+						title: 'Repeating Event',
+						start: new Date(y, m, d-3, 16, 0),
+						allDay: false
+					},
+					{
+						id: 999,
+						title: 'Repeating Event',
+						start: new Date(y, m, d+4, 16, 0),
+						allDay: false
+					},
+					{
+						title: 'Meeting',
+						start: new Date(y, m, d, 10, 30),
+						allDay: false
+					},
+					{
+						title: 'Lunch',
+						start: new Date(y, m, d, 12, 5),
+						end: new Date(y, m, d, 14, 43),
+						allDay: false
+					},
+					{
+						title: 'Birthday Party',
+						start: new Date(y, m, d+1, 19, 0),
+						end: new Date(y, m, d+1, 22, 30),
+						allDay: false
+					},
+					{
+						title: 'Click for Google',
+						start: new Date(y, m, 28),
+						end: new Date(y, m, 29),
+						url: 'http://google.com/'
+					}
+				]
+			}
+
+		});
+		
+	});
+
+</script>
+<style>
+
+	body {
+		margin-top: 40px;
+		text-align: center;
+		font-size: 13px;
+		font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
+		}
+
+	#calendar {
+		width: 900px;
+		margin: 0 auto;
+		}
+
+</style>
+</head>
+<body>
+<div id='calendar'></div>
+</body>
+</html>