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

how to disable match case button

3 Answers 96 Views
DataFilter
This is a migrated thread and some comments may be shown as answers.
Chandan
Top achievements
Rank 1
Chandan asked on 16 Nov 2011, 08:36 PM
i want to remove the match case button or disable it. for string datatypes , in the data filter . can anyone plz help me with this.

3 Answers, 1 is accepted

Sort by
0
Maya
Telerik team
answered on 17 Nov 2011, 07:06 AM
Hi Chandan,

Please take a look at this article for a reference.
 

Greetings,
Maya
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Dimitrina
Telerik team
answered on 17 Nov 2011, 08:50 AM
Hello Chandan,

I have notice that the help article is still not updated with the latest information. Please note that as of Q3 2011, there is a new MatchCaseVisibility property added to the StringFilterEditor. So you could directly set it.

void gridView_FieldFilterEditorCreated(object sender, Telerik.Windows.Controls.GridView.EditorCreatedEventArgs e)
{
 var stringFilterEditor = e.Editor as StringFilterEditor;
 if (stringFilterEditor != null)
 {
    stringFilterEditor.MatchCaseVisibility = Visibility.Hidden;
 }
}

The help article will be updated soon.

Greetings,
Didie
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Chandan
Top achievements
Rank 1
answered on 17 Nov 2011, 06:01 PM
Thanks for the Reply, but , i want ot disable the match case present in RAD DATA FILTER . how to disable the match case option in rad data filter??????
Tags
DataFilter
Asked by
Chandan
Top achievements
Rank 1
Answers by
Maya
Telerik team
Dimitrina
Telerik team
Chandan
Top achievements
Rank 1
Share this question
or