private void SfDataGrid_FilterPopupShown(object sender, Syncfusion.WinForms.DataGrid.Events.FilterPopupShownEventArgs e)
{ if (e.Column.FilterPredicates != null || e.Column.FilterPredicates.Count > 0) return; //Enable the AND operatio in the advancefilter
e.Control.OrRadioButton.Checked = false; e.Control.AndRadioButton.Checked = true; } |
Yes I would be able to use the code you suggested. Please let me know when the workaround is implemented and I can confirm on my end. Thank you.
sfDataGrid.FilterPopupShown += SfDataGrid_FilterPopupShown;
private void SfDataGrid_FilterPopupShown(object sender, Syncfusion.WinForms.DataGrid.Events.FilterPopupShownEventArgs e)
{
if (e.Column is GridDateTimeColumn)
{
//Enable the AND operatio in the advancefilter
e.Control.OrRadioButton.Checked = false;
e.Control.AndRadioButton.Checked = true;
}
} |