I am using utrawebgrid,whenever I am binding grid to the datasource which is having records more than 12815 it is generating following error.Can you please explian me why this is happening and solution over this.
An unhandled exception of type 'System.StackOverflowException' occurred in Infragistics2.WebUI.UltraWebGrid.v8.2.dll
Regards.
are you trying to load all the records in the grid at the same time?
If so, that could cuase a performance issue not to mention sending all that data to the client.
Try using load on demand or at least paging the data.
Let me give more details.
1) The grid is already using pageing,page size is 10.
2) I also tried to following DisplayLayout-LoadOnDemand="Automatic" but problem is still there.
3) Grid get databinded successfully and this exception is thrown after click on any of the pager number excluding first page.