Symptoms

Causes and Solutions
Telerik RadMenu 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 RadMenu is set to false
In this case Telerik RadMenu will search for its java script file in the RadControls folder:

The following script will be part of the rendered output of the menu:
| |
Copy Code |
|
<div id="RadMenu1" class="radmenu RadMenu_Default "> <!-- 4.2.2 --><script type="text/javascript" src="/WebSite5/RadControls/Menu/Scripts/4_2_2/RadMenu.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 'Radmenu' is undefined error. To make sure that this is really the case, you can copy the path to the RadMenu.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:
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:
Click to enlarge
Case 2: UseEmbeddedScripts property of Telerik RadMenu is set to true (Default case)
In this case Telerik RadMenu 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 menu:
| |
Copy Code |
|
<div id="RadMenu1" class="radmenu RadMenu_Default "> <!-- 4.2.2 --><script type="text/javascript" src="/WebSite5/WebResource.axd?d=veEwQzFyNPj1RKevCJXcR0qmC8jt0a51jpO7JlDpURPgZZc_w6Hxl uo14mR8KBv666oIQ77TUP_S55HkUbPNMkSSh7zz7uM4-DBhn5li3t41&t=633083570480000000"> </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