Explorar o código

dayRender test

Adam Shaw %!s(int64=13) %!d(string=hai) anos
pai
achega
28af22c5d3
Modificáronse 1 ficheiros con 107 adicións e 0 borrados
  1. 107 0
      tests/day_render.html

+ 107 - 0
tests/day_render.html

@@ -0,0 +1,107 @@
+<!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({
+
+			dayRender: function(date, td) {
+				//console.log(date, td);
+				td.find('.fc-day-content').prepend('this is the ' + date.getDate());
+			},
+
+			dayClick: function(date, allDay) {
+				console.log(date, allDay);
+			},
+			weekNumbers: true,
+			//selectable: true,
+			//isRTL: true,
+
+			header: {
+				left: 'prev,next today',
+				center: 'title',
+				right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
+			},
+			editable: true,
+			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>