Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Peter
Created on: 06 Jun 2013 10:18
Category: CommandBar
Type: Bug Report
1
FIX. RadCommandBar - CommandBarDropDownList does not show its items when located in the overflow list
Data-bounded CommandBarDropDownList shows only currently selected item when the CommandBarDropDownList located into overflow list.

Workarround: Assign the CommandBar's BindingContext explicitly

	public partial class Form1 : Form
	{
		
		public Form1()
		{
			InitializeComponent();
                        this.commandBarDropDownList1.BindingContext = this.BindingContext;
		}
0 comments