Quick question regarding recurring events on the server side. Due to the scheduler implementation, recurring events are stored as one record within the database. For what I am trying to achieve, I need to know if there is an event happening lets say in the middle of that recurring event.
Actually worked it out a little differently, we can gather all the recurring events on the client side, therefore we send the objects to the server and take care of what ever we need. There are some what issues with that as well, but for now this solves our problem at the moment.
In case if you need to get an array of single events within a specific interval, you should use the List<object> GetOccurrences(IEnumerable source, DateTime from, DateTime to) method of the helper DHTMLX.Common.DHXEventsHelper class. As parameters, the method takes the collection of items, start and end dates (set the time interval you want to get instances of single events from).