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 SubEnd Class
Thanks in a advance,
Leo
Hello leodata, I tested your application and was unable to reproduce this issue. IE and FF doesn't crash and works just fine. Could you please provide more information regarding Operating System used, Visual Studio version used.
Thank you,
Swetha
The ff works fine but IE doesn't.
I'm using IE ver 8.0.6001.18702 and visual studio 2008 with .net 3.5 SP1
The operating system is windows XP sp3 (English Interface with Greek regional settings)
When I'm typing the first letter of a word that exists in the webDropdown the IE crashes but if I type a letter that no word starts from this the IE doesn't crash.
The steps to reproduce are the following:
1)Run with IE the webapplication (the two files i posted in my first post)
2)Mark the text inside the webDropdown and press delete
3)Set your keybord to greek or copy the greek letter "α"
4)Paste or type the letter "α" in the webDropdown
5)The IE will crash
I hope that you can reproduce it!