To reproduce:
Create a RadBindingNavigator, set its binding source and call the AddStandartItems method. You will notice that when you change the current position by clicking the buttons, two positions are being changed.
Workaround:
Use the following class:
public class MyNavigator : RadBindingNavigator
{
protected override RadCommandBarElement CreateCommandBarElement()
{
return new MyNavigatorElement();
}
}
public class MyNavigatorElement : RadBindingNavigatorElement
{
protected override void LoadCore()
{
return;
}
}