In my application whenever there is much data in the Ultra Grid then the scroll bar does not work properly and it seems just like hang.
And if we try to scroll it a bit faster then in response whole application goes to unresponsive state.
Hi Bharat,
What kind of DataSource are you using for your grid? My guess is that your DataSource might be recursive and thus there are an infinite number of bands in the grid and this might cause a problem like you are getting. If that's the case, you could try setting MaxBandDepth to a reasonable number like 5 or 8 and see if that helps.
You might also want to check out the WinGrid Performance Guide for some other tips on making the grid more efficient.
Both the mentioned properties are already set as
grdConsolidation.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Deferred;
But still issue is occurring at our end. When we scroll mouse with lots of data it grid go to not responding state.
Please suggest something else.