This is a migrated thread and some comments may be shown as answers.

CheckBoxMenuItem in dropdownBotton

1 Answer 76 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Bibek
Top achievements
Rank 1
Bibek asked on 23 Mar 2009, 10:32 PM
hi,

Is there any way of adding radiobutton in dropdownbottom.

regards,

Bibek Dawadi

1 Answer, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 25 Mar 2009, 04:35 PM
Hi Bibek,

Thanks for your question. Yes, it is possible to add a RadRadioButtonElement in a RadDropDownButton control. You can try using the following code snippet:

RadRadioButtonElement element = new RadRadioButtonElement(); 
element.Text = "RadioText"
this.radDropDownButton1.Items.Add(element); 
 
element = new RadRadioButtonElement(); 
element.Text = "RadioText1"

I hope this will help you to achieve the desired behavior.

Do not hesitate to get back to me in case of further need.

Regards,
Deyan
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
Menu
Asked by
Bibek
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Share this question
or