New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Client-side Programming Overview
RadSplitButton provides a flexible client-side API. You can easily interact with the button in the browser using the RadSplitButton client-side object. In addition to a variety of client-side events, the client-side object model lets you achieve complicated tasks while avoiding unnecessary post-backs.
Getting the RadSplitButton client-side object
RadSplitButton creates a client-side object with the ClientID of the button. You can obtain the reference using the following JavaScript code:
JavaScript
var button = $find("<%= RadSplitButton.ClientID %>");
Check out the Get Client-side Reference to a Control Object article to find other options to reach the control object on the client-side.