We upgraded from 9.2 to 11.1. In IE9 this command fails intermittently in IE9 mode. Compatability mode works fine. The grid is not in "igtbl_gridState". This is called at the end of page load.
If i use setTimer to call a function 10milliseconds it works fine so far.
Gary
Hello Gary,
Can you tell me in what event or function do you try to call this method (“igtbl_getGridById”)?
I have tested this behavior with the following setup:
<asp:Button ID="btn1" Text="Show" runat="server" OnClientClick="GetGrid()" />
function GetGrid() {
var grid = igtbl_getGridById("ContentPlaceHolder1_UltraWebGrid1");
}
The grid object is returned correctly after the button click in version 11.1 of the ASP controls.
Let me know if you have different setup or if you have further questions.
I am calling this function from the pageLoad . It absolutely fails using IE9. If I use compatability mode it works. Other grids are there not the one i'm calling.