When I publish my site to a local server, I have a combo box that works under IE9, but not in FireFox 14 or Chrome 21. In FF or Chrome, the dropdown comes down and when I click on an item the text area of the dropdown shows what I clicked, but the drop down does not contract. It does not appear that the SelectedIndexChanged() event is firing.
It works fine in my Win7 64-bit machine, just not on the Win2008 R2 machine.
I confirmed that the libraries are correct.
My code is below.
Suggestions?
[VB.NET]
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Reports.aspx.vb" Inherits="Reports" %>
<%@ Register Assembly="DevExpress.Web.ASPxEditors.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web.ASPxEditors" TagPrefix="dx" %>
<%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
<!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>Reports</title>
<link href="css/Default.css" rel="stylesheet" type="text/css" />
<link href="css/Reports.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div id="divMain">
<div id="divLogos">
<div id="divLeftLogo">
<asp:Image ID="imgGCS" runat="server" ImageUrl="~/images/GCSLogo.gif" /></div>
<div id="divMiddle">Interface Reports</div>
<div id="divRightLogo">
<asp:Image ID="imgNSide" runat="server" ImageUrl="~/images/NSideLogo.gif" /></div>
</div> <!-- end divLogos -->
<div id="divLogout"><asp:LoginStatus ID="divLoginStatus" runat="server" /></div>
<div id="divReports">Please select a report to run:</div>
<div id="divPicklist">
<div id="divPickLeft"><dx:ASPxButton ID="btnClear" runat="server"
Text="Clear Results" CssFilePath="~/css/Reports.css" Width="125px"/></div>
<div id="divPickMiddle"><dx:ASPxComboBox ID="cmbReports" runat="server"
AutoPostBack="True"
AutoResizeWithContainer="True" DropDownStyle="DropDown" ShowShadow="False">
<Items>
<dx:ListEditItem Text="Provider List" Value="GCSNorthside-IncompleteCharges.rpt"/>
<dx:ListEditItem Text="Extra Line" Value="GCSNorthside-IncompleteCharges.rpt"/>
</Items>
</dx:ASPxComboBox></div>
<div id="divPickRight"><dx:ASPxButton ID="btnExit" runat="server"
Text="Exit Reports" CssFilePath="~/css/Reports.css" Height="25px"
Width="125px"/></div>
</div><!-- divPicklist -->
<div id="divCrystal">
<CR:CrystalReportViewer ID="CRViewer1" runat="server"
AutoDataBind="true" Width="100%" HasCrystalLogo="False" />
</div> <!-- divCrystal-->
</div><!-- divMain-->
</form>
</body>
</html>