I'd like to understand if is possible to set a range ou something that guarantee January month of 2025 start Displaying the day 1st.example.: i want to remove dec 30th and 31th, and show only Wednesday 1st
Hi Hevert,
For the specified use case, configure the calendar by setting the showNonCurrentDates property to false in the OnInitialize event flow of the screen/block.
Refer this doc: https://fullcalendar.io/docs/showNonCurrentDates
Kind regards,
Benjith Sam
@Hevert Vinicius
You can also try
{
initialDate: "2025-01-01", // Ensure the calendar starts here
validRange: {
start: "2025-01-01", // Restrict range to start from January 1, 2025
end: null // Optional: No upper limit, or set a specific date
}
in advanced option to get this feture.