문제

With the Fullcalendar jQuery plugin, is it possible to display an alert with a time slot (e.g. "hello you clicked on 4/10/2014-1-2 pm) when clicking on any timeslot?

도움이 되었습니까?

해결책

Sure, it's useful.

You can trigger that alert on select:

select: function(start, end, allDay, jsEvent, view) {
    alert('you have clicked on this slot');
},  

Here is a basic example: http://jsfiddle.net/6wE8v/575/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top