New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Server-side Events

Event log

RadCheckBox exposes several server-side events that allow easy and flexible use in a wide range of application scenarios:

  • OnCheckedChanged—raised when the checked state of RadCheckBox changes and AutoPostBack is set to true.
  • OnClick—raised when the RadCheckBox is clicked and AutoPostBack is set to true.
  • OnCommand—raised when the RadCheckBox is clicked and AutoPostBack is set to true. It is useful for handling commands (using the CommandName and CommandArgument properties).
  • DefaultCS.aspx
  • DefaultCS.aspx.cs
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="CheckBox.ServerSideApi.ServerSideEvents.DefaultCS" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-containers">
        <div class="demo-container size-thin">
            <telerik:RadCheckBox ID="RadCheckBox1" runat="server" Text="I agree to the Terms & Conditions." CommandName="Delete"
                OnCheckedChanged="RadCheckBox1_CheckedChanged" OnClick="RadCheckBox1_Click" OnCommand="RadCheckBox1_Command">
            </telerik:RadCheckBox>

            <telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
                <AjaxSettings>
                    <telerik:AjaxSetting AjaxControlID="RadCheckBox1">
                        <UpdatedControls>
                            <telerik:AjaxUpdatedControl ControlID="EventLogConsole1" LoadingPanelID="RadAjaxLoadingPanel1" />
                        </UpdatedControls>
                    </telerik:AjaxSetting>
                </AjaxSettings>
            </telerik:RadAjaxManager>

            <telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1" />
        </div>
    </div>
    <qsf:EventLogConsole ID="EventLogConsole1" runat="server" AllowClear="true" Height="200px"></qsf:EventLogConsole>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance