Search
MonthSettings.showPaddingItems Property
See Also
 






Gets or sets a value indicating whether items are shown in padding days.

Namespace: MindFusion.Scheduling
File: MonthSettings.js

 Syntax

JavaScript  Copy Code

get showPaddingItems() {}

 Property Value

Boolean. True if items are shown in padding days, otherwise false.

 Example

The following code shows the padding days from the previous and next month using the showPaddingDays property of a monthSettings instance and hides their items:

JavaScript  Copy Code
calendar.monthSettings.showPaddingDays = true;
calendar.monthSettings.showPaddingItems = false;

 See Also