Calendar

Calendar component is designed to organize and display calendar events.

calendar week

Component’s XML-name: calendar.

View Mode

Calendar has 3 view modes that are selected automatically based on the date range of calendar, defined by the startDate and endDate attributes:

  1. Monthly view - displayed when the date range is over 7 days long.

    <calendar id="monthlyView"
              captionProperty="caption"
              startDate="2021-05-01"
              endDate="2021-05-17"
              height="100%"
              width="100%"
              lastVisibleDayOfWeek="5"/>
    calendar monthly view
  2. Weekly view - displayed when the date range is between 1 and 7 days long.

    <calendar id="weeklyView"
              captionProperty="caption"
              startDate="2021-05-01"
              endDate="2021-05-07"
              height="100%"
              width="100%"/>
    calendar weekly view
  3. Single-day view - displayed when the date range is within one day.

    <calendar id="singleDay"
              captionProperty="caption"
              startDate="2021-05-01"
              endDate="2021-05-01"
              height="100%"
              width="100%"/>
    calendar single day view

Customization

By default, calendar displays all 7 days of the week and 24 hours in each day. To change this behavior, there are the following attributes:

  • firstVisibleDayOfWeek and lastVisibleDayOfWeek - take values from 1 to 7, where 1 is Sunday and 7 is Saturday.

  • firstVisibleHourOfDay and lastVisibleHourOfDay - take values from 1 to 23, where 1 is 01:00 am and 23 is 23:00 pm.

For example, let’s customize calendar:

  1. To display only the first half of the day when calendar is opened in single-day view.

  2. To display only Tuesday and Wednesday in each week when calendar is opened in monthly view.

<calendar id="customized"
          captionProperty="caption"
          startDate="2021-05-01"
          endDate="2021-05-30"
          firstVisibleHourOfDay="6"
          lastVisibleHourOfDay="12"
          firstVisibleDayOfWeek="3"
          lastVisibleDayOfWeek="4"
          height="400px"
          width="500px"
          navigationButtonsVisible="true"/>
calendar customized

You can also use weeklyCaptionFormat to change the caption of weekdays. The rules of the SimpleDateFormat class define the format of the weeklyCaptionFormat value.

To change the time format, use the timeFormat attribute, with the following possible values:

  • 24H

  • 12H - the default value.

To change the names of days and months, use the dayNames and monthNames nested elements, for example:

<calendar id="customizedCalendar"
          height="100%"
          width="100%">
    <dayNames>
        <day dayOfWeek="MONDAY" value="Moon"/>
        <day dayOfWeek="TUESDAY" value="Mars"/>
        <day dayOfWeek="WEDNESDAY" value="Mercury"/>
        <day dayOfWeek="THURSDAY" value="Jupiter"/>
        <day dayOfWeek="FRIDAY" value="Venus"/>
        <day dayOfWeek="SATURDAY" value="Saturn"/>
        <day dayOfWeek="SUNDAY" value="Sun"/>
    </dayNames>
</calendar>
calendar customized captions

The dayNames or monthNames element does not extend but overrides a set of standard names. You should define the values of all days of week or month names explicitly.

To define dayNames or monthNames in Jmix Studio, select the component in the screen descriptor XML or in the Component Hierarchy panel and click on the Add button in the Component Inspector panel.

Calendar Events

Creating Events Programmatically

  1. To display events, you can add the SimpleCalendarEvent objects to calendar using the addEvent() method of the CalendarEventProvider interface:

    @Autowired
    private Calendar<Date> calendar;
    
    @Subscribe
    public void onInit(InitEvent event) {
        SimpleCalendarEvent<Date> simpleCalendarEvent = new SimpleCalendarEvent<>();
    
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    
        simpleCalendarEvent.setCaption("Development");
        simpleCalendarEvent.setDescription("Platform development");
        simpleCalendarEvent.setStart(simpleDateFormat.parse("2021-05-26 15:00", new ParsePosition(0)));
        simpleCalendarEvent.setEnd(simpleDateFormat.parse("2021-05-26 19:00", new ParsePosition(0)));
        simpleCalendarEvent.setAllDay(false);
    
        calendar.getEventProvider().addEvent(simpleCalendarEvent);
    }
  2. You can also add the list of the SimpleCalendarEvent objects to calendar using the setEventProvider() method, which accepts the ListCalendarEventProvider object as a parameter.

  3. To remove events, you can use removeEvent() or removeAllEvents() methods of the CalendarEventProvider interface.

Data-aware Events

CalendarEventProvider interface has ContainerCalendarEventProvider implementation, which allows you to fill the calendar with events from your data model entities.

To be used for the ContainerCalendarEventProvider, an entity should have at least fields with one of the datatypes for the startDateProperty, endDateProperty attributes, and field with String type for captionProperty attribute:

@JmixEntity
@Table(name = "UIEX1_CUSTOM_CALENDAR_EVENT")
@Entity(name = "uiex1_CustomCalendarEvent")
public class CustomCalendarEvent {
    @JmixGeneratedValue
    @Column(name = "ID", nullable = false)
    @Id
    private UUID id;

    @Column(name = "EVENT_CAPTION")
    private String eventCaption;

    @Column(name = "EVENT_START_DATE")
    @Temporal(TemporalType.TIMESTAMP)
    private Date eventStartDate;

    @Column(name = "EVENT_END_DATE")
    @Temporal(TemporalType.TIMESTAMP)
    private Date eventEndDate;

}

Additionally, you can define fields with String type for descriptionProperty and stylenameProperty attributes and field with Boolean type for isAllDayProperty attribute.

Usage example:

<data readOnly="true">
    <collection id="customCalendarEventsDc"
                class="ui.ex1.entity.CustomCalendarEvent">
        <fetchPlan extends="_base"/>
        <loader id="customCalendarEventsDl">
            <query>
                <![CDATA[select e from uiex1_CustomCalendarEvent e]]>
            </query>
        </loader>
    </collection>
</data>
<layout>
    <calendar dataContainer="customCalendarEventsDc"
              width="800px"
              height="400px"
              firstVisibleHourOfDay="8"
              firstVisibleDayOfWeek="2"
              lastVisibleDayOfWeek="6"
              lastVisibleHourOfDay="20"
              captionProperty="eventCaption"
              startDateProperty="eventStartDate"
              endDateProperty="eventEndDate"
              weeklyCaptionFormat="yyyy-dd-MM"/>
</layout>
calendar data aware

Events and Handlers

To generate a handler stub in Jmix Studio, select the component in the screen descriptor XML or in the Jmix UI hierarchy panel and use the Handlers tab of the Jmix UI inspector panel.

Alternatively, you can use the Generate Handler button in the top panel of the screen controller.

ContextHelpIconClickEvent

Programmatic usage: call the setContextHelpIconClickHandler() component method.

CalendarDateClickEvent

This event fires when the user clicks on a day number of the month.

Programmatic registration of the event handler: use the addDateClickListener() component method.

CalendarEventClickEvent

This event fires when the user clicks on the event.

Programmatic registration of the event handler: use the addEventClickListener() component method.

CalendarEventResizeEvent

This event fires when the user resizes the event.

Programmatic registration of the event handler: use the addEventResizeListener() component method.

CalendarEventMoveEvent

This event fires when the user moves the event.

Programmatic registration of the event handler: use the addEventMoveListener() component method.

CalendarWeekClickEvent

This event fires when the user clicks on a week number.

Programmatic registration of the event handler: use the addWeekClickListener() component method.

CalendarForwardClickEvent

This event fires when the user clicks on a forward navigation button.

Programmatic registration of the event handler: use the addForwardClickListener() component method.

CalendarBackwardClickEvent

This event fires when the user clicks on a backward navigation button.

Programmatic registration of the event handler: use the addBackwardClickListener() component method.

CalendarRangeSelectEvent

This event fires when the user clicks on an empty space and without releasing the key pulls to another place.

Programmatic registration of the event handler: use the addRangeSelectListener() component method.

CalendarDayClickEvent

This event fires when the user clicks on an empty space in the day.

Programmatic registration of the event handler: use the addDayClickListener() component method.

Styling

You can style calendar events with CSS. To configure a style, create a custom theme, and define the style name with needed parameters in the SCSS file. For example:

.v-calendar-event.event-red {
  background-color: #f4c8c8;
  color: #e00000;
}

Now you can set created style programmatically in the screen controller:

simpleCalendarEvent.setStyleName("event-red");

or with the help of the stylenameProperty attribute, by specifying as a value the entity field that contains the name of the created style.