"Yeah... not so much. Did absolutely nothing for me. Seemed a little weird anyway, but I was willing to try it. As it stands right now, if I want intellisense to work, I have to comment out the UI library file as such: "
Well, that is the solution, just sounds like you didn't execute it properly as for "weird", why is that? Studio is going to take your JS include: <script src="ui.js"></script> and *first* look for "ui-vsdoc.js" to scrape for intellisense....... you don't need to change the src tag on the <script> block, this is something VS2008 is automatically going to do.... and since that file, blank file, is there, then ui.js doesn't get it's chance to break Intellisense.... again, DON'T change the <script>'s src tag.... and rest assured, this method most definitely works.... On Nov 18, 5:15 pm, Tripletdad <[email protected]> wrote: > I have downloaded and have been using the visual studio intellisense > enabled version of jQuery (as show below): > > <script src="jquery-1.3.2-vsdoc2.js" type="text/javascript"></script> > > In my ASP.NET web site project, intellisense works great if this is > the only jQuery library included. Once I add in the jQueryUI library > (as shown below), Intellisense goes bye-bye. > > <script src="jquery-1.3.2-vsdoc2.js" type="text/javascript"></script> > > <script src="jquery-ui-1.7.2.custom.min.js" type="text/javascript"></ > script> > > Elsewhere in this group, someone suggested creating an empty .js file > with the same name as the .js file in question - with the addtion of "- > vsdoc". So, in my case the empty file would be named: > > jquery-ui-1.7.2.custom.min-vsdoc.js > > Yeah... not so much. Did absolutely nothing for me. Seemed a little > weird anyway, but I was willing to try it. As it stands right now, if > I want intellisense to work, I have to comment out the UI library file > as such: > > <%--<script src="jquery-ui-1.7.2.custom.min.js" type="text/ > javascript"></script>--%> > > Then, intellisense is happy again... at least for the core jQuery > stuff. Of course, this is far from an ideal situation - commenting > and un-commenting this file. > > What's the problem here? Any thoughts on why this is happening? > > Thanks... -- 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=.
