• Empleos
  • Sobre nosotros
  • profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
  • empresas
    • Inicio
    • Publicar vacante
    • Nuestro proceso
    • Precios
    • Pruebas Online
    • Nómina
    • Blog
    • Comercial
    • Calculadora de salario

0

159
Vistas
How to apply colours for each events in full calendar js?

I want to show multiple events with different colour for each. Here two ajax response have displayed in calendar. But all the events shows only green. The Second events also visible in green colour. How to show each events with different colours?

My code is as follows:

$('#calendar').fullCalendar({

      events: function(start, end, timezone, callback) {
         $.ajax({
            url: url1,
            dataType: 'json',
            success: function(response) {
                 var events = [];
              $(response.data).each(function() {
                 events.push({
                  title: $(this).attr('title'),
                  start: $(this).attr('start'), // will be parsed
                  color: 'green'
                 });
              });
             callback(events);
            }
         });
         $.ajax({
            url: url2,
            dataType: 'json',
            success: function(response) {
                 var events = [];
              $(response.data).each(function() {
                 events.push({
                  title: $(this).attr('title'),
                  start: $(this).attr('start'), // will be parsed
                  color: 'red'
                 });
              });
             callback(events);
            }
         });
       }
       
   });
about 3 years ago · Santiago Trujillo
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Nuestro proceso Comercial
Legal
Términos y condiciones Política de privacidad
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recomiéndame algunas ofertas
Necesito ayuda