Hi Megatron,
Thank you for contacting Syncfusion support.
To overcome this problem we suggest you to use excel filtering. You can enable excel menu by setting FilterType as Excel in FilterSettings . The excel menu contains an option such as Sorting, Clear filter, submenu for advanced filtering. In this filtering we have between options in excel filter dialog. Please refer to the below help document, code example and sample.
@(Html.EJ().Grid<object>("Grid") .Datasource((IEnumerable<object>)ViewBag.datasource) .AllowPaging() .AllowFiltering() .FilterSettings(fil=>fil.FilterType(FilterType.Excel)) … })) |
Regards,
Jayaprakash K.