Hello,
when I add set following properties RecordContainerGenerationMode="Virtualize" RecordLoadMode="LoadOnDemand" to XamDataGrid and try to use vertical scroll bar for page down bit faster it crashes the app. How ever if I remove RecordContainerGenerationMode="Virtualize" RecordLoadMode="LoadOnDemand" and scroll it wont crash.
Please help me out, do I making anything wrong?
Thanks,
Mahesh
Hello Mahesh,
I cannot reproduce that, especially, when the ScrollingMode of the grid is deferred. Is it possible to provide a sample that reproduces this issue?
Hello Alex,
I changed scrolling mode to deferred still I see same exception and crash. Below is the code, on load of window I am fetching eventlogs data and binding ito xamdatagrid.
<ig:XamDataGrid RecordContainerGenerationMode="Virtualize" RecordLoadMode="LoadOnDemand" ScrollingMode="Deferred" IsGroupByAreaExpanded="True" Theme="Office2k7Blue" x:Name="eventLogsGrid"/>
Following are the environment on which I am testing.
Infragistics controls: 8.2.20082.2001
win xp sp3
.net framework 3.5 sp1
Note: once I remove below properties, it works fine no crash.
RecordContainerGenerationMode
="Virtualize" RecordLoadMode="LoadOnDemand" ScrollingMode="Deferred"
Thanks