I have a LookUpEdit control and an XtraGrid on the same win form and they are both bound to the same BusinessBindingSource. When I use BusinessBindingSource.BusinessObject.Navigate to an absolute index position, I see the Grid focusing correctly on the row at the specified position, but the display text of the LookUpEdit doesn't change to point to the value I navigated to.
Is this normal? The call is like this (bs is the BusinessBindingSource and foo is true):
bool foo = bs.BusinessObject.Navigate(BusinessNavigationDirection.Absolute, bs.BusinessObject.CurrentRowIndex);
I am using DevXpress version 6.3
Thanks in advance.