Filter as you type

Is there an example of a ‘filter as you type’? So instead of using checkboxes or a select to match exactly what may be in the calendar, to match at least what is in the calendar with a simple input field that will narrow down the events shown as you type. Does this make sense?

Hi,
Currently we haven’t any examples.
Try to implement it by yourself. But possibly it can cause perfomance issue if you have too much events.
So, you can get either all events or only during the specified period by getEvents() (for example during the time range of an active view). And then add your custom ‘filter as you type’ based on event.text. Create new array and put there filtered events, remove all events by clearAll() and load new array with data using scheduler.load().