Ok...so I have 2 very simple grids on a form. When the screen loads I fill them up with data and I set the activerow = null...however when the screen finishes loading the first row of each grid is the active row.
How do I prevent this? Basically I want both grids to have no active rows after they are loaded.
David
Hi David,
I just answered almost this same question in another thread:
http://forums.infragistics.com/forums/p/8898/34820.aspx#34820
As workaround it's possible to deactivate active row programmatically:
grid.ActiveRow.Selected = false; grid.ActiveRow = null;
But probably it's not good solution.