21
Views
2
Comments
Solved
[FullCalendar Reactive v6] fullCalendar
full-calendar-reactive-v5
Reactive icon
Forge asset by Rodrigo Silva
Application Type
Reactive

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 

2021-03-18 21-03-15
Benjith Sam
 
MVP
Solution

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

2025-08-07 06-30-56
Amit J
Champion

@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.




Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.