This is a migrated thread and some comments may be shown as answers.

RadToolTip fails in RadGrid where page size is greater than 61

3 Answers 41 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Martin
Top achievements
Rank 1
Martin asked on 19 Jul 2012, 07:10 PM
It works fine when page is 61 or smaller, but the moment you increase it to 62, and higher you get a system.webforms.pagerequestmanagerservererrorexception 500. There is nothing wrong with the data because for testing purpose the query is a union of rows that work. Image of the error attached.

3 Answers, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 24 Jul 2012, 11:40 AM
Hello Martin,

I tried to replicate the described problem locally in our tooltipified demo, however it is working properly. Can you let me know what is the difference in your case?

Kind regards,
Pavlina
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Pavlina
Telerik team
answered on 24 Jul 2012, 11:40 AM
Hello Martin,

I tried to replicate the described problem locally in our tooltipified demo, however it is working properly. Can you let me know what is the difference in your case?

Kind regards,
Pavlina
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Martin
Top achievements
Rank 1
answered on 09 Aug 2012, 09:23 PM
Got the problem fix. Microsoft added a limit on the size of the collection, set it to 1000. So the 61 rows, went over. By debugging inside the AJAX request I got a meaningful error, and was able to locate the solution, which is in web.config
    <appSettings>
        <add key="aspnet:MaxHttpCollectionKeys" value="2000" />
    </appSettings>
Tags
Grid
Asked by
Martin
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Martin
Top achievements
Rank 1
Share this question
or