Guest User

Untitled

a guest
Mar 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. $("#deps").change(function(event){
  2. // Obtenemos todos datos de departamentos
  3. $.get("calendarInfo/"+event.target.value+"",function(response,state){
  4. console.log(response);
  5. if(response.length < 0) {
  6. // Si seleccionas la primera opcion por defecto "seleccionar" no hace nada
  7. }
  8. else {
  9.  
  10. console.log(response[0]);
  11. var newEventsList = new Array();
  12. // Nuevo evento
  13. for(i=0; i < response.length; i++){
  14. //console.log(response);
  15. newEventsList [0] = new Object();
  16. newEventsList [0]["id"] = response[0].id;
  17. newEventsList [0]["title"] = response[0].titulo;
  18. newEventsList [0]["start"] = response[0].fechaIni;
  19. newEventsList [0]["end"] = response[0].fechaFin;
  20.  
  21. $('#fc-default').fullCalendar('addEventSource', newEventsList);
  22. $('#fc-default').fullCalendar('rerenderEvents');
  23. //$('#fc-default').fullCalendar('refetchEvents' );
  24. console.log('Evento cargado,fin ejecución');
  25.  
  26. }
  27.  
  28. }
  29. });
  30. });
Add Comment
Please, Sign In to add comment