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>
Thanks for your reply.
Let me know if you have any other questions.
My apologies, I now see it does work. I was trying to use debugger; in visual studio which works in IE but does not in Firefox or Chrome. I will use other debug tools.
Hello wakefl,
I just tested this with v13.2.20132.2028 and the same browsers' versions you mentioned and the double-click event was firing as expected. Is it possible for you to attach a sample that reproduces the issue?
Thank you.
Just to add. I have upgraded to the latest service release and the problem still occurs! Version=13.2.20132.2028