Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.82 KB

overview.md

File metadata and controls

47 lines (32 loc) · 1.82 KB
title page_title description slug tags published position
Overview
Overview - RadSwitch
Check our Web Forms article about Overview.
switch/overview
overview
true
0

WebForms Switch Overview

The RadSwitch control (Figure 1) enriches the features, that ASP.NET Switch control has. Additionally, it provides events, supports Commands and numerous [themes]({%slug switch/appearance-and-styling/skins%}). RadSwitch is available as of R2 2021.

caption Figure 1: RadSwitch configuration.

WebForms Switch Overview

caption Example 1: A basic example of a RadSwitch setup.

        <telerik:RadLabel runat="server" ID="RadLabel1" AssociatedControlID="RadSwitch1" Text="I agree to the Terms & Conditions.">
        </telerik:RadLabel>

        <telerik:RadSwitch ID="RadSwitch1" runat="server" Width="65px">
            <ToggleStates>
                <ToggleStateOn Text="Yes" />
                <ToggleStateOff Text="No" />
            </ToggleStates>
        </telerik:RadSwitch>

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

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

See Also

  • RadSwitch Online Demos

  • ASP.NET AJAX Switch

  • [RadSwitch Getting Started]({%slug switch/getting-started%})

  • [RadSwitch Checked State]({%slug switch/functionality/checked-state%})

  • [RadSwitch Properties and Events]({%slug switch/server-side-programming/properties-and-events%})