Is there any way of adding radiobutton in dropdownbottom.
regards,
Bibek Dawadi
1 Answer, 1 is accepted
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.