What is the schema for event filterization? How it should be implemented? What is the event key? How screen event box is translated to event data? Is there handler where to make the event filterization there (_BeforeLoad or _OnDisplay or anything a like)? Any sample for c# Asp.net Web forms?
Hi,
scheduler loads data via Ajax, so the filtering is performed either on the client side (loading all data to scheduler, but showing part of it), or in the Data handler - loading only part of data. Client side filtering is preferable if the filtering options are changed dinamically by the user via page UI - it will work much faster then reloading the data from the db each time.
If filtration won’t be changed during the session - e.g. if you have multiple users and each user is able to see only own calendar - then filtering should be performed at the data loading stage. Of course these two methods can be combined
scheduler-net.com/docs/filtration.html