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
655
DoubleClick event not firing in Google Chrome or Firefox
posted

The grid in the following web page does not trigger the DoubleClick event in Google Chrome or Firefox, it works ok in Internet Explorer. I am using IE 11, Chrome 32.0.1700.76 and Firefox 26.0.

Any suggestions?

Thanks

Luke

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ChromeBug.aspx.vb" Inherits="ChromeBug" %>

<%@ Register Assembly="Infragistics4.Web.v13.2, Version=13.2.20132.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
    Namespace="Infragistics.Web.UI.GridControls" TagPrefix="ig" %>
<%@ Register Assembly="Infragistics4.Web.v13.2, Version=13.2.20132.1003, 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>
    <script type="text/javascript" id="igClientScript">
<!--

        function WebDataGrid1_Grid_DoubleClick(sender, eventArgs) {
            ///<summary>
            ///
            ///</summary>
            ///<param name="sender" type="Infragistics.Web.UI.WebDataGrid"></param>
            ///<param name="eventArgs" type="Infragistics.Web.UI.ItemEventArgs"></param>

            //Add code to handle your event here.
            debugger;
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <ig:WebScriptManager ID="WebScriptManager1" runat="server">
    </ig:WebScriptManager>
    <div>
        <ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="350px" Width="400px">
            <ClientEvents DoubleClick="WebDataGrid1_Grid_DoubleClick" />
        </ig:WebDataGrid>
    </div>
    </form>
</body>
</html>