This example illustrates how to create a custom HeaderFilter for a date column. The main steps are:
1) create a custom HeaderTemplate to prevent default header filter button logic and implement custom one;
2) use ASPxPopupControl to display a Calendar and several additional filters. ASPxFormLayout is used to build a layout;
3) use the client AutoFilterByColumn method to perform filtering from the client side and the ASPxClientGridView.PerformCallback method to pass a complex filter expression to the server to implement custom filtering;
4) process a custom callback in the ASPxGridView.CustomCallback event handler to get information about the required filter expression on the server;
5) implement the approach described in the ASPxGridView - How to programmatically change the column's filter in the FilterExpression help article to apply a new filter.
Click on the "Model Date" column to check how this works.
MVC:
GridView - How to implement a custom HeaderFilter with a calendar for a date column