Hi,
I have a recurrent problem with the grid behavior concerning ActiveRow and selected rows.
Even if i make a grid.activeRow = null and grid.selected.rows.clear(), i have sometimes (not always) highlighting lines in my grid...
Is somebody know the reason ?
Thanks,
Vincent
If your problem is that the first row in the grid is the one that is highlighted, then I had this problem recently.
The problem is that the grid automatically picks up the position of the data bound to the grid, defaulting to 0 (first row).
This post has a good explanation of the problem and solution (set SyncWithCurrencyManager to false on the grid):
http://forums.infragistics.com/forums/p/5229/23764.aspx#23764
It seams to work.
Thank you for this tip , i was getting nervous with this problem!