Hi,
I am trying to find my RadTabStrip client side and then work with it in javascript. But when I use the $find() method, it just returns null.
Here's something like what I'm doing:
Whenever the method checks to make sure that tabStrip is not null, it fails and returns.
What am I missing here?
I am trying to find my RadTabStrip client side and then work with it in javascript. But when I use the $find() method, it just returns null.
Here's something like what I'm doing:
function tabStripManipulation{ var tabStrip = $find('<%= this.myTabStrip.ClientID%>'); if (!tabStrip) { return; } var tab = tabStrip.findTabByText("Document"); // do more stuff here.... ...}Whenever the method checks to make sure that tabStrip is not null, it fails and returns.
What am I missing here?