Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <div id='calendar'></div>
  2.  
  3. <script>
  4. // Create FullCalendar Object
  5. $j('#calendar').fullCalendar({
  6. height: 650,
  7. nowIndicator: true,
  8. defaultView: 'agendaWeek',
  9. columnHeaderFormat: 'ddd D MMM',
  10. header: {
  11. left: 'prev,next today',
  12. center: 'title',
  13. right: 'month,agendaWeek,agendaDay'
  14. },
  15. businessHours: businessHours,
  16. selectable: true,
  17. select: function (startDate, endDate) {
  18. AddWorkHours(startDate, endDate);
  19. }
  20. });
  21.  
  22. </script>
Add Comment
Please, Sign In to add comment