RadTabStrip for ASP.NET

Telerik RadTabStrip Client-Side API Send comments on this topic.
See Also
Telerik RadTabStrip client-side > Telerik RadTabStrip Client-Side API

Glossary Item Box

Telerik RadTabStrip exposes a rich client side API. Simply get the client-side object reference of the respective tabstrip instance and use its methods, properties and collections. You can get the tabstrip instance using one of the following techniques:

  • Obtain an instance of the tabstrip client-side object directly. If you have a tabstrip with server-side ID RadTabStrip1, the client object can be obtained using:
  Copy Code
<script type="text/javascript">

var tabStrip = <%= RadTabStrip1.ClientID %>;

</script>
  • If you have defined a client-side event handler, it receives two parameters - the first one is the client-side object of the tabstrip, the second is event argument. For details, check out the client event section of the help.

See Also