Well, it seems that Jamir was putting something like <script type="text/javascript" src="datepicker-vsdoc.js"></script>
in his HTML You do NOT want to put "-vsdoc" in the reference, Studio will automatically look for that version first so if you had sitting in a folder: myscript.js datepicker.js datepicker-vsdoc.js and your references were <script type="text/javascript" src="myscript.js"></script> <script type="text/javascript" src="datepicker.js"></script> then as the real time compiler looks at those two lines it will: - first look for "myscript-vsdoc.js"... if it doesn't find it, then it will user "myscript.js" - then look for "datepicker-vsdoc.js".... it finds that, so it uses that version of the script instead of "datepicker.js" this is also an important fact to keep in mind if you want Intellisense to fully work: Studio has problems with a lot of plugins (like UI's core), so to get around it, create a blank file and name is with the -vsdoc convention so if you have: - ui.core.js (which was downloaded from UI's site) then create a blank file as - ui.core-vsdoc.js and then Intellisense will effectively "skip" over trying to include that in Intellisense On Apr 15, 7:33 am, "you&me" <[email protected]> wrote: > please tell me how you fix if with details i face this problem and i > don't know how to do ! > > On Mar 8, 8:23 am, Jamir Shaikh <[email protected]> wrote: > > > I just made it work, as soon I posted to the group. > > > The vddoc.js was causing this issue. Removed vsdoc.js, it started working. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
