Hello @LA81638,
Thank you for your message.
Regarding the Air Calendar, you can certainly use now the plugin version that works best for you. We will soon release an update that addresses the âUndefinedâ issue.
As for the second issue youâve noticed, you are correct. Starting from version 3.83.0, the placeholder only takes the initial value it receives. In your case, because the Air Calendar loads a bit later, the Air date time pickerâs placeholder ends up displaying a blank value. We have already forwarded this issue to our development team for further analysis and resolution. We will keep you updated on any progress.
Thank you once again, and we wish you a great day ahead.
Hello @isaac,
Thanks for reaching out to us.
It is totally achievable to do both things you mentioned, to change the color of a selected date and to adjust the Current days circles. To do that, just add an HTML element on your pageâyou can make it small, like 1x1, so it wonât disrupt your app. Then add this code in the HTML element:
<style>
.fc .fc-daygrid-day-frame:hover {
background-color: red !important;
}
.fc .fc-highlight {
background-color: green !important;
}
.fc-theme-standard td.fc-day-today a.fc-daygrid-day-number, .ac-today-number .fc-daygrid-day-number {
width: 24px !important;
}
</style>
In the code above, â.fc .fc-daygrid-day-frame:hoverâ allows you to change the background color of the selected day when you hover over it. With â.fc .fc-highlightâ, you can change the background color of the selected day when you click on it. The last class helps set the current dayâs circle to be a little wider so that the number will appear more centered. With these adjustments, you can change even more CSS styling for the element.
Can you please try this in your app and tell us about your results? If you have any other questions or clarifications, please let us know.
Thank you once again and weâre looking forward to your reply.
Best regards,
Zeroqode Support Team