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
60
WebGrid doesn't execute in Firefox
posted

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

Parents
No Data
Reply Children
No Data