New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Properties and Events

RadCheckBox common features (properties)

PropertyDescription
AutoPostBackGets or sets a bool value indicating whether the control will automatically post the page back to the server. Default value is true.
CausesValidationGets or sets a bool value indicating whether validation is performed when the RadCheckBox is clicked.
CheckedGets or sets a nullable bool value indicating whether the RadCheckBox is checked. If a null value is set, the value will default to false.
PostbackUrlGets or sets the URL of the page to post to from the current page, when the RadCheckBox is clicked.
TextGets or sets the text displayed in the RadCheckBox control.
ValidationGroupGets or sets the group of controls for which the RadCheckBox control causes validation when it posts back to the server.
CommandNameGets or sets the command name associated with the RadCheckBox control that is passed to the Command event.
CommandArgumentGets or sets an optional parameter passed to the Command event along with the associated CommandName.
CssClassDefine the CSS class for the RadCheckBox.
DisabledCssClassDefine the CSS class for the RadCheckBox when it is disabled.
HoveredCssClassGets or sets the CSS class, when the mouse pointer is hovered over the RadCheckBox control.
PressedCssClassGets or sets the CSS class, when the RadCheckBox control is pressed.
OnClientLoadSets a name of a JavaScript function that will be called when the RadCheckBox is loaded on the page
OnClientClickingSets a name of a JavaScript function that will be called when the RadCheckBox is clicked. The event is cancelable.
OnClientClickedSets a name of a JavaScript function that will be called when the RadCheckBox is clicked, after the OnClientClicking event.
OnClientCheckedChangingSets a name of a JavaScript function that will be called when the RadCheckBox is checked/unchecked. The event is cancelable.
OnClientCheckedChangedSets a name of a JavaScript function that will be called when the RadCheckBox is checked/unchecked, after the OnClientClicking event.
OnClientMouseOverSets a name of a JavaScript function that will be called when the mouse pointer hovers over the RadCheckBox
OnClientMouseOutSets a name of a JavaScript function that will be called when the mouse pointer leaves the RadCheckBox
UseSubmitBehaviorGets or sets a bool value indicating whether the RadCheckBox control uses the client browser's submit mechanism or the ASP.NET postback mechanism.
ValueValue associated with the checkbox.

Server - side Events:

PropertyDescription
OnClickRaised when the RadCheckBox performs a postback.
OnCommandRaised when the RadCheckBox performs a postback.
OnCheckedChangedRaised when the checked state of the RadCheckBox has changed.

The event order is:

  1. OnCheckedChanged

  2. OnClick

  3. OnCommand