New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnClientLoad
The load event occurs when the RadLinkButton client-side object is instantiated on the page.
The event handler receives two parameters:
-
The instance of the loaded RadLinkButton control.
-
An empty event args.
This event comes handy in scenarios when the user wants to operate with the control's client-side API and events at the earliest available stage.
Example 1: Handling RadLinkButton OnClientLoad event.
ASP.NET
<script type="text/javascript">
function clientLoad(sender, args) {
alert('RadLinkButton Object Loaded');
}
</script>
<telerik:RadLinkButton ID="RadLinkButton1" runat="server" Text="Click" OnClientLoad="clientLoad" NavigateUrl="https://www.telerik.com" Target="_blank">
</telerik:RadLinkButton>