Good evening, I need to make a calendar (using datepicker from jquery ui), where the dates in the database need to be highlighted. But I have no idea how. I am using a webapi (local), which takes the Sql Server information, the api web backend is ok, and if I try to use outside the datepicker, the dates with the events appear tbm! Depending on the event, the dates need or not a button to sign up (I think I have to use an if else), however I am new to javascript and I do not know how to do it ... could anyone help me? Here's what I've been able to do so far:
$("#datepicker").datepicker({
numberOfMonths: 1,
timeFormat: 'hh:mm',
dayNamesMin: ['D', 'S', 'T', 'Q', 'Q', 'S', 'S', 'D'],
monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],
monthNames: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
changeMonth: true,
changeYear: true,
beforeShowDay: //aqui viria a função para destacar as datas dos eventos
if (/*aqui viria a condição se o evento precisa de ficha de inscrição*/) {
} else {
//aqui viria se o evento não precisa de ficha de inscrição
}
},
onSelect: //aqui abre um dialog ou um alert para aparecer o evento para o usuário
}
}
});
});
}
}
});'