I have problems using the WebDropDown control.When they are over 1000 items ... when I click it to any control on my webform I mark Invalid operation given the current state of the object.This error only when I susede over 1000 items if you are 1000 or less exactly no problem.¿Is there any limitation on the number of items that can be loaded to WebDropDown.???¿What I can do to carry more than 1000 items in the WebDropDown.???I'm using * VS 2008. professional * Infragistic 2010 V3 * Framework 3.5 * Windows Server 2003regards
Hi HalconDivino,
I made some research on the matter and the issue seems to be caused by recent Microsoft update, which limits the size of JSON keys collection to 1000 by default. This could be changed by setting the MaxJsonDeserializerMembers to a larger value:
<configuration>
<appSettings>
<add key="aspnet:MaxJsonDeserializerMembers" value="1500" />
</appSettings>
</configuration>
More information on the matter can be found in the following thread: http://community.infragistics.com/forums/p/64032/326979.aspx.
Please let me know if this helps.
Muchas gracias por tu respuesta. Voy a aplicar la solución que me estas sugiriendo, espero se resuelba este problema
Saludos
Thank you very much for your reply.I will implement the solution that I suggested this, I hope this problem is resuelbaregards
I'm glad I could help. If you have any other questions, please do not hesitate to ask.