Skip to content

Replies

0
Alex E
Alex E answered on Apr 18, 2011 2:53 PM

Hello mtginfragistics,

Let me know if you have any further questions.

0
Alex E
Alex E answered on Apr 12, 2011 3:04 PM

Hello mtginfragistics,

You can try the following steps in order to resolve this issue:

Make sure that the file (same version and same build as inserted in web.config) is available in your GAC or in your Bin folder.

Make sure that you have cleared all temporary files that points to the different versions of the controls.

Clear the content of the licenses.licx and rebuild the project again.

Restart Visual Studio (sometimes the assemblies are kept in memory).

Let me know if you need further assistance with this question.

0
Alex E
Alex E answered on Mar 2, 2011 12:24 PM

Hello John,

Let me know if you need further assistance with this question.

0
Alex E
Alex E answered on Feb 25, 2011 9:59 AM

Hello John,

I have created a simple example based on your scenario that includes a “WebDataGrid” with 15 000 rows and paging enabled with 100 records per page.

I have handled the “PageIndexChanged()” event and put thread in “Sleep”  mode for 30 sec.:

protected void WebDataGrid1_PageIndexChanged(object sender, Infragistics.Web.UI.GridControls.PagingEventArgs e)

    {

        Thread.Sleep(30000);

    }

 

When the thread resumed its execution after “Sleep” mode the error message from the page was sent – "Server does not respond.".

Then I have added the following function (provided in previous responses) to the “Grid_Initialize()” client-side event:

function WebDataGrid1_Grid_Initialize(sender, eventArgs)

{

       ///<summary>

       ///

       ///</summary>

       ///<param name="sender" type="Infragistics.Web.UI.ControlMain"></param>

       ///<param name="eventArgs" type="Infragistics.Web.UI.EventArgs"></param>

 

       $find("<%= WebDataGrid1.ClientID%>")._callbackManager.setTimeout(31000);       

 

}

 

The error was not present anymore and after 30 sec. of waiting the paging displayed the next page from the grid without the above error message.

You can try the above resolution and let me know what the results are on your machine.