Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.96 KB

overview.md

File metadata and controls

40 lines (27 loc) · 1.96 KB
title page_title description slug tags published position
Overview
Overview - RadCheckBox
Check our Web Forms article about Overview.
checkbox/overview
overview
true
0

WebForms CheckBox Overview

RadCheckBox is available as of Q1 2016 and it enriches the features, that ASP.NET CheckBox control has. Additionally, it provides events, supports Commands and numerous [themes/skins]({%slug checkbox/appearance-and-styling/skins%}).

The control can be easily styled by changing the Skin property. This will eliminate the need to use the [RadFormDecorator]({%slug formdecorator/overview%}), just to style a single checkbox.

Developers can easily migrate their applications from using the standard ASP.NET (checkbox) controls to the RadCheckBox control, because most of their functionality is provided by our control, and is controlled by the same or similar (intuitive) properties.

caption A basic example of a RadCheckBox setup.

<telerik:RadCheckBox ID="RadCheckBox1" runat="server" Text="I agree to the Terms of Service"></telerik:RadCheckBox>

caption Result

WebForms RadCheckBox sample

note The default value of the AutoPostBack property is true, which means RadCheckBox will POST the page to the server when checked/unchecked.

note RadCheckBox does not support a Classic [render mode]({%slug checkbox/mobile-support/render-modes%}). Setting its RenderMode to Classic will default to the Lightweight render mode.

See Also