I have a RadDatePicker I am using on a child page. The master page includes a jQuery.js file - which wreaks havoc on how many RadControls work and appears to disregard any skin set for the RadDatePicker.
Commenting out the jQuery.js line fixes the RadControls problem, but then I can't use additional jQuery, I get a javascript error that basically tells me that $ is undefined.
From other articles/posts it would appear that the $ is invalid as far as the RadControls are concerned, as it uses a different variable to avoid conflicts. It appears to be conflicting for me though. Any ideas?
I have my RadScriptManager set up as follows:
I have tried the $ assignment as follows, to no avail:
| <script type="text/javascript" src="/js/jquery132.js"></script> |
Commenting out the jQuery.js line fixes the RadControls problem, but then I can't use additional jQuery, I get a javascript error that basically tells me that $ is undefined.
From other articles/posts it would appear that the $ is invalid as far as the RadControls are concerned, as it uses a different variable to avoid conflicts. It appears to be conflicting for me though. Any ideas?
I have my RadScriptManager set up as follows:
| <telerik:RadScriptManager runat="server" ID="RadScriptManager1" > |
| <Scripts> |
| <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" /> |
| </Scripts> |
| </telerik:RadScriptManager> |
I have tried the $ assignment as follows, to no avail:
| <script type="text/javascript"> |
| window.$ = $telerik.$; |
| </script> |