Browse by Tags
All Tags » focus (RSS)
-
Hi Yuriy,
Fist of all get hold of the item you wish to navigateSystem.Data.DataRowView dv = myGrid.Items[myIndex];
Then set this item as the current itemmyGrid.CurrentItem = dv;
Then select itmyGrid.BringItemIntoView(dv);
and you are done...
Enjoy
-
Hi,
Is there a way to make edit mode finish when the focus is released from the data grid? Currently it only releases when another row (or cell?) is clicked.
Or maybe it's just not validating until I click on something else within the grid? Either way, I'd like for it to databind when I click on another control.
Thanks in advance,
Rei
|
|
|
|