I found what I need from this post but not fully understanding why i cannot change the statement of:
return ['all', event.school].indexOf($('#school_selector').val()) >= 0
to look for the displayed text value of the select using:
return ['all', event.EventType].$("#TypeList option:selected").text() !== '';
When ran while my statement, I get nothing for a calendar grid (get the header only). Seems like followed the same logic, if the selected text is not 'blank', return true, and sort for X.
I am current using the static demo events from the calendar sample code, while I am working on this filter issue. I seen some other ways of doing this, with removing and adding the event sources, but this seems like an easier, and quicker (without all the round trips) of filtering.
Thanks,
Dave