Click here to Skip to main content
15,921,203 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i need like this

radiobutton.checked=true;

like that in teleric how can i get?
Posted
Comments
David_Wimbley 27-May-13 1:33am    
Are you using a radio group in telerik? I use devex controls all the time and the way i get the value from a radio group is by selected index.

int selectedValue = radiogroupcontrol1.SelectedIndex;

And if you needed to set it you would do

radiogroupcontrol1.SelectedIndex = 1;

Would this work?

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900