Completed
Last Updated: 30 May 2017 10:30 by ADMIN
Parse event of the property binding is not fired when you change the ToggleState value of RadToggleButton:

Workaround:

private void Form1_Shown(object sender, EventArgs e)
		{
            Binding b = new Binding("ToggleState", vm, "IsToggleSet", true, DataSourceUpdateMode.OnPropertyChanged);
			b.Format += new ConvertEventHandler(b_Format);
			b.Parse += new ConvertEventHandler(b_Parse);
			radToggleButton1.DataBindings.Add(b);
		}

		void b_Parse(object sender, ConvertEventArgs e)
		{
			if (e.DesiredType != typeof(bool) || !(e.Value is ToggleState))
				return;

			ToggleState state = (ToggleState)e.Value;
			e.Value = (state == ToggleState.On) ? true : false;
		}

		void b_Format(object sender, ConvertEventArgs e)
		{
			if (e.DesiredType != typeof(ToggleState) || !(e.Value is bool))
				return;

			bool isToggleOn = (bool)e.Value;
			e.Value = isToggleOn ? ToggleState.On : ToggleState.Off;
		}
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
2
RadCheckBox can be checked by the right mouse button
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Buttons
Type: Bug Report
0
Sometimes after rapid clicking on RadSplitButton, its DropDown stops closing when the user clicks outside it.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Buttons
Type: Bug Report
0
Pressing backspace key in ComboBox element added to a RadDropDownButton closes that popup box and doesn't allow you to do any modification
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
4
RadRadioButton behaves differently from the Microsoft RadioButton in terms of keyboard navigation.
Completed
Last Updated: 25 Nov 2010 04:36 by Jesse Dyck
The mouse right button should not fire the click event of the radbutton. A check should be performed, which only fires the click in case it was clicked by the left button. Possibly, this check should be performed at the TPF level, so it will be available for all controls.
Completed
Last Updated: 04 Aug 2008 12:48 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Buttons
Type: Bug Report
2
The theme is not applied properly when the button is toggled off.
1 2 3 4