From bfe5e08da4544c8b495bb1c51940ec258ca65c6e Mon Sep 17 00:00:00 2001 From: Erik Ruthruff Date: Tue, 29 Dec 2015 10:30:22 -0600 Subject: [PATCH] Update onclienttogglestatechanged.md Minor editing changes. --- .../events/onclienttogglestatechanged.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/controls/togglebutton/client-side-programming/events/onclienttogglestatechanged.md b/controls/togglebutton/client-side-programming/events/onclienttogglestatechanged.md index 04d68cc39c..d126aeb712 100644 --- a/controls/togglebutton/client-side-programming/events/onclienttogglestatechanged.md +++ b/controls/togglebutton/client-side-programming/events/onclienttogglestatechanged.md @@ -14,19 +14,19 @@ The **toggleStateChanged** event is subsequent to the [toggleStateChanging]({%sl The event handler receives two parameters: -1. The instance of the clicked RadButton control +1. The instance of the clicked RadButton control. 1. An eventArgs parameter of type **Telerik.Web.UI.RadButtonCheckedEventArgs**, containing the following properties and methods: * get_currentToggleState() - returns the current **RadButtonToggleState** object applied to the button. - * get_commandName() - returns the value assigned to the RadToggleButton's **CommandName** property + * get_commandName() - returns the value assigned to the RadToggleButton's **CommandName** property. - * get_commandArgument() - returns the value assigned to the RadToggleButton's **CommandArgument** property + * get_commandArgument() - returns the value assigned to the RadToggleButton's **CommandArgument** property. This event is useful when the user wants to execute custom client code when the button changes its toggle state. ->caption Example 1: Using OnClientToggleStateChanged event to get the text of the currently selected state. +>caption Example 1: Using the OnClientToggleStateChanged event to get the text of the currently selected state. ````ASP.NET