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
2320
Disable WebGrid Clientside Firefox issue
posted

I have a javascript function that I call that disable or enable a WebGrid clientside.

Here is the function.

function SetGridDisabledState(bDisable) {
            var grid = igtbl_getGridById("UltraWebGrid1");
            if ((grid != null) && (grid != undefined)) {
                grid.Element.disabled = bDisable;              
            }
        }

This function works perfectly in IE.  When its called, passing true, the grid is immediately disabled.  In Firefox however, it does nothing.

Can anyone help me on this?

I am using version 9.1of NetAdvantage for asp.net 3.5.