Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
WebDropDown in Greek language
posted

I'm using the WebDropDown version 10.2.20102.1011 and i'm loading it with items in greek language. Everything works fine in firefox. When i'm using the Internet Explorer and typing inside the WebDropDown, in order to user the auto complete feature of the WebDropDown, the Internet Explorer crashes. That happens when the word i'm typing exists in the list of the WebDropDown. I'm using Internet Explorer 8.0.6001.18702 and Firefox 3.6.3.

Could you please help me with this problem because it is very very critical for me!

 

Here is a simple asp.net page that happens this problem:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="webdropdowntest2._Default" %>

<%@ Register Assembly="Infragistics35.Web.v10.2, Version=10.2.20102.1011, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
    Namespace="Infragistics.Web.UI.ListControls" TagPrefix="ig" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <ig:WebDropDown ID="WebDropDown1" runat="server" Width="200px">
        </ig:WebDropDown>
    </div>
    </form>
</body>
</html>

 

The CodeBehind file is the following:

Partial Public Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("ααα", "10"))
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("ΑΑΑ", "11"))
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("βββ", "20"))
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("ΒΒΒ", "21"))
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("ηηη", "30"))
        WebDropDown1.Items.Add(New Infragistics.Web.UI.ListControls.DropDownItem("ΗΗΗ", "31"))
    End Sub

End Class

 

Thanks in a advance,

Leo