HomeCommunityControl GalleryForm ControlsButtonsDataGrid RadioButton

DataGrid RadioButton



(1) Submit a Review

4,641 Downloads

33,499 Views


Description

This is a free RadioButton control that works properly inside the ASP.NET DataGrid.

  • Bindable GroupName property
  • Bindable Value property
  • Bindable Text property

Don't forget that you can have multiple groups on the same page!

Syntax Example

private void RadioButton1_CheckChanged(object sender, System.EventArgs e) { ConwayControls.Web.RadioButton rb = sender as ConwayControls.Web.RadioButton; if(rb != null && rb.Checked){ ThisObject.SomeProperty = rb.Value; } }

Screenshots

Reviews

Submit a review

Time Saving

Reviewed by: JonathanP on Thursday, January 10, 2008

5 Stars

Thanks for the control, saved me quite some time. I want to add that this control is not only usefull for use in datagrid controls but also in web user controls or repeaters.