
Error updating jscript Intellisense: Telerik.Web.UI.Common.Jquery-vsdoc.js:Telerik.Web.UI: '_$' is undefined @ 2217:8.
I followed the documentation as described here: http://www.telerik.com/help/aspnet-ajax/introduction-jquery-intellisense.html but the problem still exists.
What to do ?
6 Answers, 1 is accepted
I can reproduce the same error in VS2008 if the reference to jquery-telerik.js is not correct. Can you confirm you have created the file as described in the article you referenced and the correct path is used in its registration?
Best wishes,
Pavel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

I used the following in the header of web page:
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
So i do not use a jquery-telerik.js at all.
If you are using VS2008 you need to follow the instructions in the article you referenced regarding that version of Visual Studio. The references you are using will not work unless you are developing in VS 2010 environment.
Best wishes,
Pavel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Just to elaborate, what you need to do is add the following references:
<
asp:ScriptManager
ID
=
"ScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
/>
<
asp:ScriptReference
Path
=
"~/Scripts/jquery-1.5.1.js"
/>
<
asp:ScriptReference
Path
=
"~/Scripts/jquery-1.5.1-vsdoc.js"
/>
</
Scripts
>
</
asp:ScriptManager
>
I have also attached the necessary scripts.
Regards,
Pavel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Indeed the latest solution you provided does work. However it is not very convenient that the official documentation does no state that the solution does NOT work for VS2008.
thx,
Marc.
Indeed, we will update our documentation to include the needed information.
Best wishes,
Pavel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.