This is a migrated thread and some comments may be shown as answers.

Case Sensitive Grouping

1 Answer 57 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Andy Green
Top achievements
Rank 2
Andy Green asked on 04 Apr 2019, 11:48 AM

What is the default value for Case Sensitive Grouping.

Hope its false.

Andy

1 Answer, 1 is accepted

Sort by
0
Accepted
Peter Milchev
Telerik team
answered on 04 Apr 2019, 02:23 PM
Hello Andy,

The default value of the CaseSensitive property of the GroupingSettings is true, here is the source code showing that: 

/// <summary>
/// Gets or sets a value indicating whether the grouping operations will be case
/// sensitive or not.
/// </summary>
/// <value>
///     <strong>true</strong> if grouping is case sensitive, otherwise
/// <strong>false</strong>. The default value is <strong>true</strong>.
/// </value>
[DefaultValue(true), NotifyParentProperty(true)]
public bool CaseSensitive
{
    get
    {
        object res = this.ViewState["_cs"];
        if (res == null)
        {
            res = true;
        }
 
        return (bool) res;
    }
    set { this.ViewState["_cs"] = value; }
}

Regards,
Peter Milchev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Grid
Asked by
Andy Green
Top achievements
Rank 2
Answers by
Peter Milchev
Telerik team
Share this question
or