Ticket T718909
Visible to All Users

DataGrid - Is it possible to use a case-insensitive filter if DevExtreme.AspNet.Data is used

created 6 years ago (modified 6 years ago)

[DevExpress Support Team: CLONED FROM T385990: How to make the Grid's filter to be a case- and accent-insensitive in Server Mode]

this is my grid config:

C#
Html.DevExtreme().DataGrid() .ID(this.ClientId); .DataSource(ds => ds.WebApi() .Controller(this.Controller) .LoadAction(this.Action) .Key(this.Key)) .Columns( columns => { foreach (var itemModel in this.DataModel) { columns.Add() .DataField(data?.ToString() ?? "") .DataType(Enum.Parse<GridColumnDataType>(resultado)) .Caption(textResource); } } .Selection(s => s.Mode(SelectionMode.Single)) .OnInitialized("gridInitialized") .OnRowClick("rowClicked") .Paging(p => p.PageSize(10)) .FilterRow(f => f.Visible(true)) .HeaderFilter(f => f.Visible(true)) .AllowColumnReordering(true) .RowAlternationEnabled(true) .ShowBorders(true) .GroupPanel(p => p.Visible(true)) .Export(e => e.Enabled(true).FileName(DateTime.Now.ToString("yyyy-mm-dd_HH.mm.ss") + "_TE ST").AllowExportSelectedData(false)) .ColumnHidingEnabled(true) .ColumnAutoWidth(true) .SearchPanel(d => d.Visible(true));

This Grid is generated dynamicly and send to view.

Maybe, I forget something?

Thank you so much for your help.

Show previous comments (1)
G G
Guillermo Fernández Doval 6 years ago

    Hello Uriah!

    Thanks for your answer. This is that I've implemented:

    First, I added DevExpress.Data (18.2.6) in order to set "DevExpress.Data.Helpers.ServerModeCore.DefaultForceCaseInsensitiveForAnySource = true;" (cause I didn't found on DevExtreme.AspNet.Data) in Main()  (Program.cs). So these are my dependencies:

    DevExpress.Data.es (18.2.6)
    DevExtreme.AspNet.Core (18.2.5)
    DevExtreme.AspNet.Data (2.1.1)

    And this is my grid config:

    C#
    Html.DevExtreme().DataGrid() .ID(this.ClientId); .DataSource(ds => ds.WebApi() .Controller(this.Controller) .LoadAction(this.Action) .Key(this.Key)) .Columns( columns => { foreach (var itemModel in this.DataModel) { columns.Add() .DataField(data?.ToString() ?? "") .DataType(Enum.Parse<GridColumnDataType>(resultado)) .Caption(textResource); } } .Selection(s => s.Mode(SelectionMode.Single)) .OnInitialized("gridInitialized") .OnRowClick("rowClicked") .Paging(p => p.PageSize(10)) .FilterRow(f => f.Visible(true)) .HeaderFilter(f => f.Visible(true)) .AllowColumnReordering(true) .RowAlternationEnabled(true) .ShowBorders(true) .GroupPanel(p => p.Visible(true)) .Export(e => e.Enabled(true).FileName(DateTime.Now.ToString("yyyy-mm-dd_HH.mm.ss") + "_TE ST").AllowExportSelectedData(false)) .ColumnHidingEnabled(true) .ColumnAutoWidth(true) .SearchPanel(d => d.Visible(true));

    This Grid is generated dynamicly and send to view.

    Maybe, I forget something?

    Thank you so much for your help.

    G G
    Guillermo Fernández Doval 6 years ago

      (I forget comment that we are using EF storage)

      DevExpress Support Team 6 years ago

        Thank you for the clarification. The DevExpress.Data assembly does not extend the third party components functionality. The ServerModeCore.DefaultForceCaseInsensitiveForAnySource option is in effect only for specific data sources implemented in the DevExpress.Data library.

        I modified the ticket description and passed it to the DevExtreme team. Please await the final response from them.

        Answers approved by DevExpress Support

        created 6 years ago

        Hi,

        As far as I understand, you're using the DataSourceLoader.Load method to load data from Web API.  This method is a part of the DevExtreme.AspNet.Data library. It allows configuring only case sensitivity using the StringToLower option. The accent insensitive search is not supported out of the box and should be configured at the database level as described in the original help section: How to make the Grid's filter to be a case- and accent-insensitive in Server Mode

        Let us know if you have additional questions.

          Comments (2)
          G G
          Guillermo Fernández Doval 6 years ago

            This solution is not available for me, because database collation can not be changed (im not the owner).

            Is this in target to include as new feature for future versions of DevExtreme?

            Thanks.

            Artem (DevExpress Support) 6 years ago

              We've just scheduled the RoadMap for 2019 (see this blog) and this feature is not in our immediate plans. If the amount of data is not large, consider disabling RemoteOperations and implement one of the approaches from the following threads:
              DataGrid - Set search to case insensitive and accent insensitive (the one you reactivated with a similar question)
              DataGrid - How to implement accent-insensitive filtering

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.