Experts,
I do have a gridview. When user click on a row, it redirects to another page. It WORKS just fine in IE but doesn't fire up in firefox. Below is the code:
in default.aspx page:
<script language="javascript" type="text/javascript"> function DblClickHandler(gridName, cellId) { var row = igtbl_getRowById(cellId); var key = row.getCell(0).getValue(true); window.document.URL = 'userdetail.aspx?UserID=' + key; }</script>
also in my gridview, I have the following:
<DisplayLayout Name="ultraWGEmailList" AllowColSizingDefault="Free" AllowSortingDefault="OnClient" BorderCollapseDefault="Separate" RowHeightDefault="20px" SelectTypeRowDefault="Single" StationaryMarginsOutlookGroupBy="True" TableLayout="Fixed" Version="3.00" HeaderClickActionDefault="SortSingle"> <FrameStyle BackColor="#FAFCF1" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="8pt"> </FrameStyle> <RowAlternateStyleDefault BackColor="#FFFFCC"> </RowAlternateStyleDefault> <ClientSideEvents DblClickHandler="DblClickHandler" />
......
Nothing seems to be fancy. In IE, user clicks on any row, it redirects to the userdetails.aspx page but in Firefox, it never executes.
Am I missing something? Your help is truly appreciated.Bests
le9569
Any suggestion, please?