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
300
WebExplorerBar - Template with TextBox. Does not work in Firefox 3.6.x or Chrome. Code included. Help!
posted

Hello,

I have a very simple page with a WebExporerBar. I have one group and one template with a label and a textbox. When I run it in IE8, it works fine. I can click on the textbox and type. When I view the same page in Firefox or Chrome, I am unable to type in the textbox. What am I missing?

Here's the code from b.aspx. THere is nothing in the code behind.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="b.aspx.cs" Inherits="b" %>

<%@ Register Assembly="Infragistics4.Web.v10.2, Version=10.2.20102.2091, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
    Namespace="Infragistics.Web.UI.NavigationControls" TagPrefix="ig" %>
<%@ Register Assembly="Infragistics4.Web.v10.2, Version=10.2.20102.2091, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
    Namespace="Infragistics.Web.UI" 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>
        <ig:WebScriptManager ID="WebScriptManager1" runat="server">
        </ig:WebScriptManager>
        <ig:WebExplorerBar ID="WebExplorerBar1" runat="server" Width="250px" GroupContentsHeight=""
            StyleSetName="ElectricBlue" AutoPostBackFlags-ItemClick="On">
            <Groups>
                <ig:ExplorerBarGroup Expanded="True" GroupContentsHeight="" Text="Test">
                    <Items>
                        <ig:ExplorerBarItem TemplateId="NewsTemp">
                        </ig:ExplorerBarItem>
                    </Items>
                </ig:ExplorerBarGroup>
            </Groups>
            <Templates>
                <ig:ItemTemplate ID="WebExplorerBar1Template1" runat="server" TemplateID="NewsTemp">
                    <Template>
                        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
                        <br />
                        <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
                    </Template>
                </ig:ItemTemplate>
            </Templates>
        </ig:WebExplorerBar>
    </div>
    </form>
</body>
</html>

Thanks.