Filtering data

Hi !

I read about filtering use-case in the documentation, but I don’t understand how to filter data in an ASP .NET project. It is not like MVC where we can find Views and Controllers…

I need to add a custon field in the lightbox and then filter datas depending on it.

Thanks for your help !

There may be several ways, depending on what you do on the page.
If you looking for client-side API, you can check these methods
docs.dhtmlx.com/scheduler/filtering.html
They can be defined and applied dynamically:

// define filters scheduler.filter_week = scheduler.filter_timeline = scheduler.filter_month function(id, event){ if(event.type == display_type) return true; else return false; }; // redraw data scheduler.setCurrentView();