title | description | type | page_title | slug | tags | res_type | ticketid |
---|---|---|---|---|---|---|---|
Disabling Confirmation Dialog When Turning RadSwitch Off |
Learn how to disable the confirmation dialog for the RadSwitch component in ASP.NET AJAX when switching from ON to OFF state. |
how-to |
How to Disable Confirmation Dialog on RadSwitch for ASP.NET AJAX |
disable-confirmation-dialog-radswitch |
radswitch, asp.net ajax, confirmation dialog, toggle, event handling |
kb |
1659523 |
Product | Version |
---|---|
RadSwitch for ASP.NET AJAX | 2024.2.513 |
When using the RadSwitch, a confirmation dialog appears when toggling the switch from the ON to OFF state, which can be unnecessary for some use cases. This article demonstrates how to disable the confirmation dialog when turning the switch OFF, ensuring it only appears when toggling the switch ON.
This KB article also answers the following questions:
- How can I conditionally show a confirmation dialog with RadSwitch in ASP.NET AJAX?
- How do I prevent a confirmation dialog from appearing when turning a switch OFF?
- What event handler should I use to control the display of confirmation dialogs in RadSwitch?
To control when the confirmation dialog appears for a RadSwitch, use the OnClientCheckedChanging
event handler. This allows you to conditionally display the confirmation dialog based on the switch's current state.
- Define the
onClientCheckedChanging
JavaScript function. This function checks the switch's state and displays the confirmation dialog only when the switch is being turned ON.
<script type="text/javascript">
function onClientCheckedChanging(sender, args) {
if (!sender.get_checked()) {
var confirmText = "Are you sure you want to continue?";
var userConfirmed = confirm(confirmText);
if (!userConfirmed) {
// If the user cancels, prevent the toggle
args.set_cancel(true);
}
}
}
</script>
- Update the RadSwitch control to use the
OnClientCheckedChanging
event handler. Ensure this function is defined in your JavaScript and is accessible when the event triggers.
<telerik:RadSwitch ID="RadSwitchPoints" runat="server"
OnClientCheckedChanging="onClientCheckedChanging"
Width="65px">
<ToggleStates>
<ToggleStateOn Text="ON" />
<ToggleStateOff Text="OFF" />
</ToggleStates>
</telerik:RadSwitch>
By implementing the above steps, the confirmation dialog will no longer appear when the switch is toggled OFF. It will only be displayed when the switch is toggled ON, as desired.