You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1115,6 +1116,58 @@ The current [View](#view-object) object
1115
1116
1116
1117
Determines whether calendar events can be resized.
1117
1118
1119
+
### eventFilter
1120
+
- Type `function`
1121
+
- Default `undefined`
1122
+
1123
+
A function for filtering the array of events before displaying them in the calendar. It allows, for example, to display only specific events for each view.
1124
+
1125
+
```js
1126
+
function (info) {
1127
+
// return true to keep the event, false to exclude it
1128
+
}
1129
+
```
1130
+
`info` is an object with the following properties:
1131
+
<table>
1132
+
<tr>
1133
+
<td>
1134
+
1135
+
`event`
1136
+
</td>
1137
+
<td>
1138
+
1139
+
The current [Event](#event-object) object being processed in the array
1140
+
</td>
1141
+
</tr>
1142
+
<tr>
1143
+
<td>
1144
+
1145
+
`index`
1146
+
</td>
1147
+
<td>The index of the current event being processed in the array</td>
1148
+
</tr>
1149
+
<tr>
1150
+
<td>
1151
+
1152
+
`events`
1153
+
</td>
1154
+
<td>
1155
+
1156
+
The array of all events `eventFilter` was called upon
@@ -1115,6 +1116,58 @@ The current [View](#view-object) object
1115
1116
1116
1117
Determines whether calendar events can be resized.
1117
1118
1119
+
### eventFilter
1120
+
- Type `function`
1121
+
- Default `undefined`
1122
+
1123
+
A function for filtering the array of events before displaying them in the calendar. It allows, for example, to display only specific events for each view.
1124
+
1125
+
```js
1126
+
function (info) {
1127
+
// return true to keep the event, false to exclude it
1128
+
}
1129
+
```
1130
+
`info` is an object with the following properties:
1131
+
<table>
1132
+
<tr>
1133
+
<td>
1134
+
1135
+
`event`
1136
+
</td>
1137
+
<td>
1138
+
1139
+
The current [Event](#event-object) object being processed in the array
1140
+
</td>
1141
+
</tr>
1142
+
<tr>
1143
+
<td>
1144
+
1145
+
`index`
1146
+
</td>
1147
+
<td>The index of the current event being processed in the array</td>
1148
+
</tr>
1149
+
<tr>
1150
+
<td>
1151
+
1152
+
`events`
1153
+
</td>
1154
+
<td>
1155
+
1156
+
The array of all events `eventFilter` was called upon
@@ -1115,6 +1116,58 @@ The current [View](#view-object) object
1115
1116
1116
1117
Determines whether calendar events can be resized.
1117
1118
1119
+
### eventFilter
1120
+
- Type `function`
1121
+
- Default `undefined`
1122
+
1123
+
A function for filtering the array of events before displaying them in the calendar. It allows, for example, to display only specific events for each view.
1124
+
1125
+
```js
1126
+
function (info) {
1127
+
// return true to keep the event, false to exclude it
1128
+
}
1129
+
```
1130
+
`info` is an object with the following properties:
1131
+
<table>
1132
+
<tr>
1133
+
<td>
1134
+
1135
+
`event`
1136
+
</td>
1137
+
<td>
1138
+
1139
+
The current [Event](#event-object) object being processed in the array
1140
+
</td>
1141
+
</tr>
1142
+
<tr>
1143
+
<td>
1144
+
1145
+
`index`
1146
+
</td>
1147
+
<td>The index of the current event being processed in the array</td>
1148
+
</tr>
1149
+
<tr>
1150
+
<td>
1151
+
1152
+
`events`
1153
+
</td>
1154
+
<td>
1155
+
1156
+
The array of all events `eventFilter` was called upon
0 commit comments