Questions Tagged javascript

Filter hours

Answered: In the Lite version, you can use this config: { businessBeginsHour: 8, businessEndsHour: 21, heightSpec: "BusinessHoursNoScroll" } This will display only the specified hours, but there will be no ver...

Crerating events side by side

Answered: There was an issue that prevented double click on calendar cells next to existing events from working. It was fixed in version 2025.1.6333 , so make sure that you are using the latest release. I assu...

onShow weird behavior

Answered: 1. The update() method incorrectly cleared the source value, indeed. This problem should be fixed now in the latest sandbox build (2025.1.6384). 2. It’s not clear what exactly is going on in your onS...

Block Overlay / Bubble for Selecting a new event area

Answered: You can use active areas to insert blocks with custom start/end inside cells. You can find an example here (this tutorial shows how to block selected time ranges): JavaScript Scheduler: Disabling Cus...

Facing Issue While Exporting Data in Resource View

Answered: You will see this error if the Calendar component isn’t visible when calling exportAs() . That can happen if the placeholder <div> is placed inside a hidden element, for example.

right to left in month

Answered: Unfortunately, RTL direction is not supported in the Scheduler at the moment.

New Event Position

Answered: The vertical position of the modal dialog can be set using the top property. By default, it is set to 20 (pixels). You can increase it as needed. The background elements appear above the modal dialog...

Business hours management scheduler

Answered: I assume that you mean the feature that lets you skip non-business hours during event moving . This adjustment is only applied during event moving and not to the data source. The Scheduler assumes th...

groupConcurrentEvents expand/close all

Answered: You can find an example in the following demo: Group Concurrent Events (Demo) It shows how to add an expand/collapse icon to the row headers using the onBeforeRowHeaderRender event handler.

Facing Issue To Export Data

Answered: During export, the Calendar sometimes isn’t able to read custom CSS. That’s why you see white text on white background. The formatting issues can be handled using the export customization event handl...

Auto fill scheduler events to cell height

Answered: Unfortunately, that is not possible. Events are arranged in horizontal lines inside rows (see also Event placement strategies ) and the line height is determined by the event height. It is possible t...

Facing Issue To Set Time Range in Resource View

Answered: The properties you are using are not correct. There are two options: You can change the business hours (business hours affect the viewport height in the default config - see also Height ) using busin...

Yearly Scheduler and Multirange

Answered: This bug should be fixed now in the latest sandbox build (2025.1.6338). For now, a range that spans multiple rows will be limited to the first row when added using multirange.add() .

Scroll to a specific row

Answered: To scroll to the specified row, you can use the scrollToResource() method.

Need to show horizontal scrolling on top also

Answered: Unfortunately, this is not supported. However, if the problem is that the bottom scrollbar is not accessible without scrolling, I recommend checking the heightSpec property which lets you set the hei...

How to change time from am,pm to 24h

Answered: The easiest way is to use a locale for which the timeFormat property is set to "Clock24Hours" . You can also customize individual properties directly - see localization in the docs.