Sathya Narayan

Sathya Narayan

  • NA
  • 155
  • 63.7k

Calender

Jul 27 2015 7:15 AM
Hi 
 
I have an calender to make the events drag and drop so just wanted to make the horizontal day and time should be displayed using vertical.This is the format of the calender i am using .The calender is i  horizontal format.I am trying with this script
 

$('#calendar').fullCalendar({
  header: {
  left: 'prev,next today',
  center: 'title',
  right: 'month,agendaWeek,agendaDay'
  },
  editable: true,
  droppable: true, // this allows things to be dropped onto the calendar
  drop: function() {
  // is the "remove after drop" checkbox checked?
  if ($('#drop-remove').is(':checked')) {
  // if so, remove the element from the "Draggable Events" list
  $(this).remove();
  }
  }
  });
  
  
  });
  
 
 
 Can any one help me?

Answers (1)