Events Overview
RadToggleButton exposes several client-side events that allow easy and flexible use in a wide range of application scenarios:
OnClientLoad (load) - raised when the control is initialized.
OnClientClicking (clicking) - raised when the user clicks the button. The event can be canceled.
OnClientToggleStateChanging (toggleStateChanging) - raised after the user clicks the button and before state is changed. The event can be canceled and it is subsequent to the OnClientClicking event.
OnClientToggleStateChanged (toggleStateChanged) - raised when the state of the button is changed. The event is subsequent to the OnClientToggleStateChanging event.
OnClientClicked (clicked) - raised when the button is clicked. The event is subsequent to the OnClientToggleStateChanged event.
OnClientMouseOver (mouseOver) - raised when the mouse hovers over the control.
OnClientMouseOut (mouseOut) - raised when the mouse leaves the control.
To handle the desired event, the user must set the respective property to the name of the JavaScript function handling the event or to an anonymous JavaScript function. Here is an example:
<script type="text/javascript">
function Click(sender, args)
{
alert("RadToggleButton was clicked.");
}
</script>
<telerik:RadToggleButton ID="RadToggleButton1" runat="server" OnClientClicked="Click">
<ToggleStates>
<telerik:ButtonToggleState Text="State 1" />
<telerik:ButtonToggleState Text="State 2" />
</ToggleStates>
</telerik:RadToggleButton>
RadToggleButton1.OnClientClicked = "Click"; //passing the name of the JS function
RadToggleButton1.OnClientClicked = "Click" 'passing the name of the JS function
<script type="text/javascript">
function Click(button, args, arg1, arg2)
{
alert("arg1:" + arg1 + " arg2:" + arg2);
}
</script>
<telerik:RadToggleButton ID="RadToggleButton1" runat="server" OnClientClicked="function(sender,args){Click(sender, args, 'Value1', 'Value2');}">
<ToggleStates>
<telerik:ButtonToggleState Text="State 1" />
<telerik:ButtonToggleState Text="State 2" />
</ToggleStates>
</telerik:RadToggleButton>
RadToggleButton1.OnClientClicked = "function(sender,args){Click(sender, args, 'Value1', 'Value2');}"; //passing an anonymous JS function
RadToggleButton1.OnClientClicked = "function(sender,args){Click(sender, args, 'Value1', 'Value2');}" 'passing an anonymous JS function