Hi,
How do I get the tabstrip object in Javascript? I have a tabstrip on my usercontrol and I used $find function to find the object but it always return null.
Here's my code:
How do I get the tabstrip object in Javascript? I have a tabstrip on my usercontrol and I used $find function to find the object but it always return null.
Here's my code:
<
telerik:RadTabStrip ID="testTS" runat="server" Skin="Office2007">
<Tabs>
<telerik:RadTab runat="server" ID="tab1" Text="tab 1" />
</Tabs>
</telerik:RadTabStrip>
...
var
testTS = $find( "<%=testTS.ClientID %>" );
Thank you.