Giter VIP home page Giter VIP logo

how-to-sort-checkbox-items-in-the-filter-popup-based-on-the-display-value's Introduction

How to sort checkbox items in the FilterPopup based on the DisplayValue?

About the sample

This sample illustrates how to sort checkbox items in the FilterPopup based on the DisplayValue.

By default, in WPF DataGrid(SfDataGrid) GridComboBoxColumn the checkbox elements in the FilterPopup will be sorted based on the edit value (SelectedValuePath) of the column. You can sort the checkbox elements in the FilterPopup based on the display value (DisplayMemberPath) of the column by using a custom sort comparer for the filter elements in the SfDataGrid.FilterItemsPopulated event.

private void DataGrid_FilterItemsPopulated(object sender, Syncfusion.UI.Xaml.Grid.GridFilterItemsPopulatedEventArgs e)
{
    (e.ItemsSource as List<FilterElement>).Sort(new FilterElementComparer());
}


public class FilterElementComparer : IComparer<FilterElement>
{
    public int Compare(FilterElement x, FilterElement y)
    {
        if (x == null)
        {
            if (y == null)
            {
                // If x is null and y is null, they're 
                // equal. 
                return 0;
            }
            else
            {
                // If x is null and y is not null, y 
                // is greater. 
                return -1;
            }
        }
        else
        {
            // If x is not null... 
            // 
            if (y == null)
            // ...and y is null, x is greater. 
            {
                return 1;
            }
            else
            {
                return x.DisplayText.CompareTo(y.DisplayText);
            }
        }
    }
}

Custom Sorting for Filter Elements

KB article - How to sort checkbox items in the FilterPopup based on the DisplayValue?

Requirements to run the demo

Visual Studio 2015 and above versions

how-to-sort-checkbox-items-in-the-filter-popup-based-on-the-display-value's People

Contributors

farjanaparveen avatar sarubala20 avatar 9629976110 avatar mohanramanbukkarasu avatar syncfusionbuild avatar

Watchers

James Cloos avatar Vijay Anand avatar Vijayakumar Srinivasan avatar harivenkateshe avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.