I am using XamGrid 10.3.20103.2117 (v2.0.50727). On change of Row selection by mouse click, It gives following error.
I observer, it some time call ActiveCellChanged call for any of row that i don't understand.
Give your suggestion to figure out issue.
We also using grid.InvalidateData() to refresh summaries on custom cell edit exit mode.As i replace with row.Manager.RefreshSummaries() works and remove my error.
Thanks,
samireclp
Why are you scrolling to view the ActiveCell? That would happen automatically.
Forget to mention,
If i avoid following lines, It doesn't get above error.
xmgrid.ScrollCellIntoView(xmgrid.ActiveCell);
xmgrid.UpdateLayout();
But i need above lines in ActiveCellChanged event.