Skip to content

No definition of Comparer in IgbColumnSortConfiguration #7

@dkamburov

Description

@dkamburov
    Sort = new IgbColumnSortConfiguration
    {
        /**
        * For string data types controls whether the sort operations for this column will be case sensitive.
        * By default, sort operations for string types are case insensitive.
        */
        CaseSensitive = true,
        /**
        * Custom comparer function which will be used for sort operations for this column.
        *
        * In the following sample, we compare the `Name` values based on their length.
        */
       
        Comparer = (a, b) => ((string)a).Length - ((string)b).Length
    }
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions