Hello everybody,
I had followed Morten´s suggestion to solve Case Sensitiveness at post "RadGrid Filter Case Sensitive?" by adding <GroupingSettings CaseSensitive="false" /> to my RadGrig.
<
telerik:RadGrid
ID
=
"rg"
runat
=
"server"
AllowFilteringByColumn
=
"True"
AllowFiltering
=
"True"
>
<
GroupingSettings
CaseSensitive
=
"false"
/>
It partially works at my scenario. I use DataSourceID and let´s say I have 20 records at my datasource, I am filtering with the EmployeeName column.
If I write "ce" the filter works fine and it retrieves just one record "Bruce Wayne" (see filter_ce.jpg) BUT
If I write "ca" the filter doesn´t work and it retrieves all records at the DataSource (see filter_ca.jpg).
In both cases I am using Contains to apply the filter.
Any ideas about what is going on?? how can I correct this behavior??
If you need me to provide more info just let me know.
Thnx in advance