私もこの機能を利用する方法を探していました。 多くの試行錯誤のコーディングの後、私のテクニックは次のとおりです。
まず、私のfullcalendarオブジェクトの名前は "semaine"です。ただ、この定義の後 $('#semaine').fullCalendar({ ... select: function(ehDeb, ehFin, jsEvent, vue) { eraseAllCellTime($('#semaine')); .... }, eventMouseover: function(event, jsEvent, view) { eraseAllCellTime($('#semaine')); },
.... });
:私はここに(すべての曜日が表示付き)
「議題」ビューを使用しています(私はフランス人だ...) は私fullcalendarオブジェクトの定義であります
$('#semaine').find('.fc-slats').find('[class="fc-widget-content"]').mouseover(
function(mouseEvent) {
displayCellTime($('#semaine'), this, mouseEvent);
}
);
$('#semaine').find('.fc-slats').find('[class="fc-widget-content"]').mouseenter(
function(mouseEvent) {
displayCellTime($('#semaine'), this, mouseEvent);
}
);
$('#semaine').mouseleave(
function() {
eraseAllCellTime($('#semaine'));
}
);
を、今の二つの機能は::、私は、これら三つのコールバック関数をオーバーライドしまし
function eraseAllCellTime(calendar) {
calendar.find('.fc-slats').find('[class="fc-widget-content"]').each(function() {
$(this).empty();
});
}
function displayCellTime(calendar, tdAllDays, mouseEvent) {
// We remove all td cell contents
eraseAllCellTime(calendar);
// and we display the good cell
var tr = $(tdAllDays).parent();
var time = tr.find('td.fc-axis.fc-time.fc-widget-content').find("span").text();
var dayColumns = calendar.find('th.fc-day-header');
var html = '<table class="dailycolumncutting">';
html += '<tr>';
var mouseX = mouseEvent.clientX;
var mouseY = mouseEvent.clientY;
for(var d = 0; d < dayColumns.size(); d++) {
var day = $(dayColumns[d]);
var offset = day.offset();
var width = day.width();
if (mouseX >= offset.left && mouseX <= offset.left+width) {
html += '<td class="hovered">' + day.data("date") + '<br />' + time + '</td>';
} else {
html += '<td> </td>';
}
}
html += '</tr>';
html += '</table>';
$(tdAllDays).empty();
$(tdAllDays).append(html);
}
あなたはきっとそれを向上させることができますが、それはあなたの必要性のための基礎を与えることができます
.dailycolumncutting td {
width: 100%;
}
.dailycolumncutting td.hovered {
text-align: center;
background-color: #ff000055;
}
...
あなたがホバー細胞内の、またはポップオーバーとしてこれを表示する:最後に、CSS定義ND ? – ADyson
私の例のようなセルの中に。 – Przemek