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

filters

1 Answer 119 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ayesha
Top achievements
Rank 1
Ayesha asked on 30 Nov 2009, 09:51 PM
Hi,

I've a radgrid with filters turned on. I found that filters are case sesitive. But in my project, they do not want the case sensitivity on filters.
For an item caleed abc, when entered abc or ABC , the filter should return the same result.
How do I enable this?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 01 Dec 2009, 05:29 AM
Hi Zaheka,

Try setting the property GroupingSettings-CaseSensitive to "false" in order to use the filter without case sensitive.

ASPX:
 
<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None"
<MasterTableView AutoGenerateColumns="True" EditMode="InPlace" CommandItemDisplay="Top" 
    DataSourceID="SqlDataSource1"
</MasterTableView> 
 
<GroupingSettings CaseSensitive="false" /> 
 
</telerik:RadGrid> 

-Shinu.
Tags
Grid
Asked by
Ayesha
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or