Symptoms

Causes and Solutions
Telerik RadTabStrip cannot find its java script file. The necessary file is fetched either from the WebResource.axd file or from the RadControls folder, depending on the control's settings.
Case 1: UseEmbeddedScripts property of Telerik RadTabStrip is set to false
In this case Telerik RadTabStrip will search for its java script file in the RadControls folder:

The following script will be part of the rendered output of the tabstrip:
| |
Copy Code |
|
<div id="RadTabStrip1" class="tabstrip RadTabStrip_Default "> <!-- 3.4.2 --><script type="text/javascript" src="/WebSite5/RadControls/TabStrip/Scripts/3_4_2/RadTabStrip.js"></script> |
If the file is not physically in the location specified by the src property, or there is a version mismatch, or the file is unaccessible, you will experience 'RadTabStrip' is undefined error. To make sure that this is really the case, you can copy the path to the RadTabStrip.js file in the browser and see if you have access to this file. If you cannot retrieve this file you will see the following error message:
Click to enlarge
The solution is to make sure that the file is intact, its version matches that of the DLL of the control, and it is in the location specified by the src property. If the file is accessible you will be able to view it or download it:
Case 2: UseEmbeddedScripts property of Telerik RadTabStrip is set to true (Default case)
In this case Telerik RadTabStrip will search for its java script file embedded in the WebResource.axd as part of the DLL of the control.
The following script will be part of the rendered output of the tabstrip:
| |
Copy Code |
|
<div id="RadTabStrip1" class="tabstrip RadTabStrip_Default "> <!-- 3.4.2 --><script type="text/javascript" src="/WebSite5/WebResource.axd?d=q4dpP6qpw2035Xph7iE41dMKXRRh9RyTWQsp6O8r8bHe6Yxu 7Oeqaa0YcPYuwutpAT-VR73yA7uVn-y38T549oAhKr9U2j0k7DA6qOqRamlmW5MlTsoVOZoUH66Dra -90&t=633083588520000000"> </script> |
If you try to view the file from the location specified by the src property, but it is not accessible, you will get the following error:
The following articles discuss possible causes and solutions of the problem:
See Also