ie6/opera9.25 bugfixes, added options, more

This commit is contained in:
Adam Shaw 2009-05-10 19:48:37 +00:00
parent 4e419032f0
commit 0332bf1b72
3 changed files with 194 additions and 96 deletions

View file

@ -11,7 +11,7 @@
} }
#calendar { #calendar {
width: 900px; width: 75%;
margin: 0 auto; margin: 0 auto;
} }
@ -48,25 +48,44 @@
title: "Repeating Event", title: "Repeating Event",
start: new Date(y, m, 9) start: new Date(y, m, 9)
}, },
{ /*{
id: 3, id: 3,
title: "Meeting", title: "Meeting",
start: new Date(y, m, 20, 9, 0) start: new Date(y, m, 20, 9, 0)
}, },*/
{ {
id: 4, id: 4,
title: "Click for Facebook", title: "Click for Facebook",
start: new Date(y, m, 27), start: new Date(y, m, 27, 16),
end: new Date(y, m, 29),
url: "http://facebook.com/"
},
{
id: 5,
title: "Click for Facebook",
start: new Date(y, m, 27, 8),
end: new Date(y, m, 29),
url: "http://facebook.com/"
},
{
id: 6,
title: "Click for Facebook",
start: new Date(y, m, 27, 14),
end: new Date(y, m, 29), end: new Date(y, m, 29),
url: "http://facebook.com/" url: "http://facebook.com/"
} }
], ],
//titleFormat: 'My',
weekStart: 1, weekStart: 1,
rightToLeft: true, //rightToLeft: true,
fixedWeeks: false, //fixedWeeks: false,
title: true, //title: true,
//timeFormat: 'xg',
eventDrop: function(event, delta) { eventDrop: function(event, delta) {
//alert(delta); //alert(delta);
},
resize: function() {
//alert(this);
} }
}); });

View file

@ -1,36 +1,20 @@
/* top area w/ month title and buttons */ /* top area w/ month title and buttons */
.full-calendar-header {
}
.full-calendar-title { .full-calendar-title {
float: left; float: left;
margin-top: 0; margin: 0 0 1em;
}
.r2l .full-calendar-title {
float: right;
} }
.full-calendar-buttons { .full-calendar-buttons {
float: right; float: right;
margin-bottom: 1em; margin: 0 0 1em;
}
.r2l .full-calendar-buttons {
float: left;
} }
.full-calendar-buttons input { .full-calendar-buttons input {
vertical-align: middle; vertical-align: middle;
font-size: 1.0em; margin: 0 0 0 5px;
margin-left: 5px; font-size: 1em;
}
.r2l .full-calendar-buttons input {
float: right;
margin: 0 5px 0 0;
} }
.full-calendar-prev, .full-calendar-prev,
@ -40,16 +24,16 @@
/* table & borders */ /* table layout & outer border */
.full-calendar-month-wrap {
clear: both;
border: 1px solid #ccc; /* outer border color & style */
}
.full-calendar-month { .full-calendar-month {
clear: both; width: 100%;
overflow: hidden; /* overflow: hidden;
^ prevents draggable events from leaving.
reason for our long-winded border css.
borders now look consistent across doctypes. */
border: 1px solid #ccc; /* border color & style */
text-align: left;
} }
.full-calendar-month table { .full-calendar-month table {
@ -57,12 +41,16 @@
border-spacing: 0; border-spacing: 0;
} }
/* cell styling */
.full-calendar-month th, .full-calendar-month th,
.full-calendar-month td.day { .full-calendar-month td.day {
padding: 0; padding: 0;
vertical-align: top; vertical-align: top;
border-style: solid; /* border style */ border-style: solid; /* inner border style */
border-color: #ccc; /* border color */ border-color: #ccc; /* inner border color */
border-width: 1px 0 0 1px; border-width: 1px 0 0 1px;
} }
@ -71,15 +59,11 @@
text-align: center; text-align: center;
} }
.full-calendar-month th.first, /* left edge? */ .full-calendar-month th.first,
.full-calendar-month td.first { .full-calendar-month td.first {
border-left: 0; border-left: 0;
} }
/* day styling */
.full-calendar-month td.today { .full-calendar-month td.today {
background: #FFFFCC; background: #FFFFCC;
} }
@ -89,10 +73,6 @@
padding: 0 2px; padding: 0 2px;
} }
.r2l .full-calendar-month .day-number {
text-align: left;
}
.full-calendar-month .other-month .day-number { .full-calendar-month .other-month .day-number {
color: #bbb; color: #bbb;
} }
@ -117,10 +97,6 @@
text-align: left; text-align: left;
} }
.r2l .full-calendar-month .event {
text-align: right;
}
.full-calendar-month .ui-draggable-dragging td { .full-calendar-month .ui-draggable-dragging td {
cursor: move; cursor: move;
} }
@ -161,3 +137,27 @@
filter: alpha(opacity=20); filter: alpha(opacity=20);
} }
/* right-to-left support */
.r2l .full-calendar-title {
float: right;
}
.r2l .full-calendar-buttons {
float: left;
}
.r2l .full-calendar-buttons input {
margin: 0 5px 0 0;
}
.r2l .full-calendar-month .day-number {
text-align: left;
}
.r2l .full-calendar-month .event {
text-align: right;
}

View file

@ -28,10 +28,6 @@
options = options || {}; options = options || {};
var showTime = typeof options.showTime == 'undefined' ? 'guess' : options.showTime;
var bo = typeof options.buttons == 'undefined' ? true : options.buttons;
var weekStart = (options.weekStart || 0) % 7;
var r2l = options.rightToLeft; var r2l = options.rightToLeft;
var dis, dit; // day index sign / translate var dis, dit; // day index sign / translate
if (r2l) { if (r2l) {
@ -43,6 +39,14 @@
dit = 0; dit = 0;
} }
var showTime = typeof options.showTime == 'undefined' ? 'guess' : options.showTime;
var bo = typeof options.buttons == 'undefined' ? true : options.buttons;
var weekStart = (options.weekStart || 0) % 7;
var timeFormat = options.timeFormat || 'gx';
var titleFormat = options.titleFormat || (r2l ? 'Y F' : 'F Y');
var tdTopBug, trTopBug, tbodyTopBug, sniffBugs = true;
this.each(function() { this.each(function() {
var date = options.year ? new Date(options.year, options.month || 0, 1) : new Date(); var date = options.year ? new Date(options.year, options.month || 0, 1) : new Date();
@ -89,7 +93,7 @@
var titleElement, todayButton, monthElement; var titleElement, todayButton, monthElement, monthElementWidth;
var header = $("<div class='full-calendar-header'/>").appendTo(this); var header = $("<div class='full-calendar-header'/>").appendTo(this);
if (options.title !== false) if (options.title !== false)
@ -99,26 +103,30 @@
var buttons = $("<div class='full-calendar-buttons'/>").appendTo(header); var buttons = $("<div class='full-calendar-buttons'/>").appendTo(header);
var prevButton, nextButton; var prevButton, nextButton;
if (bo == true || bo.today != false) { if (bo == true || bo.today != false) {
todayButton = $("<input type='button' class='full-calendar-today' value='today'/>") todayButton = $("<input type='button' class='full-calendar-today' value='today'/>").click(today);
.appendTo(buttons)
.click(today);
if (typeof bo.today == 'string') todayButton.val(bo.today); if (typeof bo.today == 'string') todayButton.val(bo.today);
} }
if (bo == true || bo.prev != false) { if (bo == true || bo.prev != false) {
prevButton = $("<input type='button' class='full-calendar-prev' value='" + (r2l ? "&gt;" : "&lt;") + "'/>") prevButton = $("<input type='button' class='full-calendar-prev' value='" + (r2l ? "&gt;" : "&lt;") + "'/>").click(prevMonth);
.appendTo(buttons)
.click(prevMonth);
if (typeof bo.prev == 'string') prevButton.val(bo.prev); if (typeof bo.prev == 'string') prevButton.val(bo.prev);
} }
if (bo == true || bo.next != false) { if (bo == true || bo.next != false) {
nextButton = $("<input type='button' class='full-calendar-next' value='" + (r2l ? "&lt;" : "&gt;") + "'/>") nextButton = $("<input type='button' class='full-calendar-next' value='" + (r2l ? "&lt;" : "&gt;") + "'/>").click(nextMonth);
.appendTo(buttons)
.click(nextMonth);
if (typeof bo.next == 'string') nextButton.val(bo.next); if (typeof bo.next == 'string') nextButton.val(bo.next);
} }
if (r2l) {
if (nextButton) nextButton.appendTo(buttons);
if (prevButton) prevButton.appendTo(buttons);
if (todayButton) todayButton.appendTo(buttons);
}else{
if (todayButton) todayButton.appendTo(buttons);
if (prevButton) prevButton.appendTo(buttons);
if (nextButton) nextButton.appendTo(buttons);
}
} }
monthElement = $("<div class='full-calendar-month' style='position:relative'/>").appendTo(this); monthElement = $("<div class='full-calendar-month' style='position:relative'/>")
.appendTo($("<div class='full-calendar-month-wrap'/>").appendTo(this));
@ -134,7 +142,7 @@
clearTime(date); clearTime(date);
var year = date.getFullYear(); var year = date.getFullYear();
var month = date.getMonth(); var month = date.getMonth();
monthTitle = monthNames[month] + ' ' + year; monthTitle = formatTitle(date);
if (titleElement) titleElement.text(monthTitle); if (titleElement) titleElement.text(monthTitle);
clearTime(date); clearTime(date);
@ -251,6 +259,17 @@
resizeTable(); resizeTable();
if (sniffBugs) {
var tr = tbody.find('tr');
var td = tr.find('td');
var trTop = tr.position().top;
var tdTop = td.position().top;
tdTopBug = tdTop < 0;
trTopBug = trTop != tdTop;
tbodyTopBug = tbody.position().top != trTop;
sniffBugs = false;
}
if (typeof options.events == 'string') { if (typeof options.events == 'string') {
if (options.loading) options.loading(true); if (options.loading) options.loading(true);
var jsonOptions = {}; var jsonOptions = {};
@ -320,7 +339,9 @@
}); });
} }
}); });
segs.sort(function(a, b) { return b.msLength - a.msLength; }); segs.sort(function(a, b) {
return (b.msLength - a.msLength) * 100 + (a.event.start - b.event.start);
});
var levels = []; var levels = [];
$.each(segs, function(j, seg) { $.each(segs, function(j, seg) {
var l = 0; // level index var l = 0; // level index
@ -362,8 +383,12 @@
for (var i=0; i<eventMatrix.length; i++) { for (var i=0; i<eventMatrix.length; i++) {
var levels = eventMatrix[i]; var levels = eventMatrix[i];
var tr = tbody.find('tr:eq('+i+')'); var tr = tbody.find('tr:eq('+i+')');
var innerDiv = tr.find('td:first div.day-content div'); var td = tr.find('td:first');
var innerDiv = td.find('div.day-content div').css('position', 'relative');
var top = innerDiv.position().top; var top = innerDiv.position().top;
if (tdTopBug) top -= td.position().top;
if (trTopBug) top += tr.position().top;
if (tbodyTopBug) top += tbody.position().top;
var height = 0; var height = 0;
for (var j=0; j<levels.length; j++) { for (var j=0; j<levels.length; j++) {
var segs = levels[j]; var segs = levels[j];
@ -405,8 +430,7 @@
(roundW ? "<td class='sw'/>" : '') + (roundW ? "<td class='sw'/>" : '') +
"<td class='s'/>" + "<td class='s'/>" +
(roundE ? "<td class='se'/>" : '') + "</tr>"); (roundE ? "<td class='se'/>" : '') + "</tr>");
buildEventText(element.find('td.c'), event, buildEventText(event, element.find('td.c'));
typeof event.showTime == 'undefined' ? showTime : event.showTime, r2l);
if (options.eventRender) { if (options.eventRender) {
var res = options.eventRender(event, element); var res = options.eventRender(event, element);
if (typeof res != 'undefined') { if (typeof res != 'undefined') {
@ -473,7 +497,7 @@
function draggableEvent(event, element) { function draggableEvent(event, element) {
element.draggable({ element.draggable({
zIndex: 3, zIndex: 4,
delay: 50, delay: 50,
opacity: options.eventDragOpacity, opacity: options.eventDragOpacity,
revertDuration: options.eventRevertDuration, revertDuration: options.eventRevertDuration,
@ -561,7 +585,8 @@
dayY = []; dayY = [];
tbody.find('tr').each(function() { tbody.find('tr').each(function() {
tr = $(this); tr = $(this);
dayY.push(tr.position().top); dayY.push(tr.position().top +
(trTopBug ? tbody.position().top : 0));
}); });
dayY.push(dayY[dayY.length-1] + tr.height()); dayY.push(dayY[dayY.length-1] + tr.height());
dayX = []; dayX = [];
@ -621,11 +646,15 @@
function resizeTable() { function resizeTable() {
var cellw = Math.floor(tbody.width() / 7); var tbodyw = tbody.width();
var cellw = Math.floor(tbodyw / 7);
var cellh = Math.round(cellw * .85); var cellh = Math.round(cellw * .85);
thead.find('th:lt(6)').width(cellw); thead.find('th')
.filter(':lt(6)').width(cellw).end()
.filter(':eq(6)').width(tbodyw - cellw*6);
tbody.find('td').height(cellh); tbody.find('td').height(cellh);
glass.height(monthElement.height()); glass.height(monthElement.height());
monthElementWidth = monthElement.width();
} }
function clearEvents() { function clearEvents() {
@ -638,12 +667,70 @@
function buildEventText(event, element) {
$("<span class='event-title' />")
.text(event.title)
.appendTo(element);
var st = typeof event.showTime == 'undefined' ? showTime : event.showTime;
if (st != false) {
var h = event.start.getHours();
var m = event.start.getMinutes();
if (st == true || st == 'guess' && (h || m || event.end.getHours() || event.end.getMinutes())) {
var s = '';
for (var i=0; i<timeFormat.length; i++) {
var c = timeFormat.charAt(i);
if (c == 'a') s += h<12 ? 'am' : 'pm';
else if (c == 'A') s += h<12 ? 'AM' : 'PM';
else if (c == 'x') s += h<12 ? 'a' : 'p';
else if (c == 'X') s += h<12 ? 'A' : 'P';
else if (c == 'g') s += h%12 || 12;
else if (c == 'G') s += h;
else if (c == 'h') s += zeroPad(h%12 || 12);
else if (c == 'H') s += zeroPad(h);
else if (c == 'i') s += zeroPad(m);
else s += c;
}
var timeElement = $("<span class='event-time' />");
if (r2l) element.append(timeElement.text(' ' + s));
else element.prepend(timeElement.text(s + ' '));
}
}
}
function formatTitle(d) {
var m = d.getMonth();
var s = '';
for (var i=0; i<titleFormat.length; i++) {
var c = titleFormat.charAt(i);
if (c == 'F') s += monthNames[m];
else if (c == 'm') s += zeroPad(m);
else if (c == 'M') s += monthAbbrevs[m];
else if (c == 'n') s += m;
else if (c == 'Y') s += d.getFullYear();
else if (c == 'y') s += (d.getFullYear()+'').substring(2);
else s += c;
}
return s;
}
var e = this;
var resizeID = 0;
$(window).resize(function() { $(window).resize(function() {
if (!ignoreResizes) { if (!ignoreResizes) {
var rid = ++resizeID;
setTimeout(function() {
if (rid == resizeID) {
if (monthElement.width() != monthElementWidth) {
clearEvents(); clearEvents();
resizeTable(); resizeTable();
_renderEvents(); _renderEvents();
if (options.resize) options.resize.call(e);
}
}
}, 200);
} }
}); });
@ -656,26 +743,17 @@
// string utilities
function zeroPad(n) {
if (n < 10) return '0' + n;
return n;
}
// event utils // event utils
function buildEventText(element, event, showTime, r2l) {
if (showTime != false) {
var h = event.start.getHours();
var m = event.start.getMinutes();
if (showTime == true || showTime == 'guess' &&
(h || m || event.end.getHours() || event.end.getMinutes())) {
var timeText = (h%12 || 12) + (h<12 ? 'a' : 'p');
if (r2l) timeText = ' ' + timeText;
else timeText += ' ';
element.append($("<span class='event-time' />").text(timeText));
}
}
var et = $("<span class='event-title' />").text(event.title)
if (r2l) element.prepend(et);
else element.append(et);
}
function cleanEvents(events) { function cleanEvents(events) {
$.each(events, function(i, event) { $.each(events, function(i, event) {
if (event.date) event.start = event.date; if (event.date) event.start = event.date;
@ -691,6 +769,7 @@
// date utils // date utils
var monthNames = ['January','February','March','April','May','June','July','August','September','October','November','December']; var monthNames = ['January','February','March','April','May','June','July','August','September','October','November','December'];
var monthAbbrevs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
var dayNames = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday']; var dayNames = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
var dayAbbrevs = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']; var dayAbbrevs = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'];