6 Answers, 1 is accepted


[quote]Dimka said:I'm sorry. The question is closed, all agreed. Everything works after restarting Visual studio, I probably made somewhere a mistake.[/quote]
If you change NAME RadBindingNavigator, BindingSource stops working, as I wrote above.
Thank you for writing.
I am not sure if you have managed to resolve the issue or not. In case you still need assistance please provide me with more details about your local setup. A sample code snippet demonstrating how you are using the binding navigator would also help. In the meantime, you can refer to the documentation here: https://docs.telerik.com/devtools/winforms/bindingnavigator/bindingnavigator.
I hope this helps. Should you have further questions please do not hesitate to write back.
Regards,
Hristo
Progress Telerik

Hello Hristo,
I found a bug in the renaming.
If on the form to place radBindingNavigator and standard BindingNavigator and a button and assign code to bind table to GridView:
private void button1_Click(object sender, EventArgs e) {
RadGridView1.DataSource = bindingSource1;
radBindingNavigator1.BindingSource = bindingSource1; //work
bindingNavigator1.BindingSource = bindingSource1; //work
}
It works!
But if I rename radBindingNavigator as navigaror1, it does not work:
private void button1_Click(object sender, EventArgs e) {
RadGridView1.DataSource = bindingSource1;
navigator1.BindingSource = bindingSource1; //don't work
standartNavigator.BindingSource = bindingSource1; // work
}
Best regards,
Dimka

I am not sure what has caused the issues in your project. Now it looks like you have managed to bind the RadBindingNavigator.
Please let me know if you would need any further assistance.
Regards,
Hristo
Progress Telerik