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

[Solved] german umlaut filter issuse

5 Answers 191 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
balticer
Top achievements
Rank 1
balticer asked on 17 May 2010, 08:24 AM
Hi,

it seems there is a filter issue with german special characters (umlaut like ä,ö,ü etc.). I think the encoding or something is wrong. Is there any solution to fix that?

regards
kai

5 Answers, 1 is accepted

Sort by
0
Accepted
Atanas Korchev
Telerik team
answered on 17 May 2010, 09:02 AM
Hello Kai Korla,

I was able to reproduce this issue. Fortunately the fix is easy:
  1. Open telerik.grid.filtering.js (from the source distribution)
  2. Find the following line:
    this.currentPage, this.orderBy || '~', this.groupBy || '~', escape(this.filterBy) || '');
  3. Replace it with
    this.currentPage, this.orderBy || '~', this.groupBy || '~', encodeURIComponent(this.filterBy) || '');
  4. Repeat the same steps for telerik.grid.grouping.js (if grouping is enabled).

Regards,
Atanas Korchev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
balticer
Top achievements
Rank 1
answered on 17 May 2010, 09:06 AM
Hi,

very thx.

regards
Kai
0
Vinicius
Top achievements
Rank 1
answered on 10 Dec 2010, 11:56 PM
I could not find the code. What's the code for the new version?
0
Michael
Top achievements
Rank 1
answered on 16 Dec 2010, 08:19 PM
Seems that this bug still exists in the latest version. Could you please provide a fix for this problem?
0
Atanas Korchev
Telerik team
answered on 17 Dec 2010, 09:01 AM
Hello Michael,

 I cannot reproduce it in the online demos. Moreover the aforementioned fix is included in the latest release. 

Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Grid
Asked by
balticer
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
balticer
Top achievements
Rank 1
Vinicius
Top achievements
Rank 1
Michael
Top achievements
Rank 1
Share this question
or