Click here to Skip to main content
15,861,125 members
Articles / Programming Languages / Visual Basic
Article

JavaScript Intellisense Improvements in Visual Studio 2008

Rate me:
Please Sign up or sign in to vote.
3.83/5 (7 votes)
4 Nov 2007CPOL4 min read 45.4K   19   3
JavaScript Intellisense Improvements in Visual Studio 2008

Table of Contents

  1. Introduction
  2. Intellisense Support
  3. JavaScript Includes and Intellisense
  4. Intellisense Hints and Comments
  5. Conclusion
  6. Useful Links
  7. History

Introduction

In today's AJAX (Asynchronous JavaScript And XML) world, one of the most obviously missing features of Visual Studio is the support for rich JavaScript Intellisense. Sure, a limited support for variable and function completion is available. It dates back as far as Microsoft Visual InterDev. However, it is minimalist at best. On more than one occasion, I had to venture outside of Visual Studio, my tool of choice for ASP.NET applications. To gain access to more advanced JavaScript features, such as the support for Intellisense with external includes, I had to use other IDEs, such as Eclipse and Aptana.

Finally, the latest version of Visual Studio (Visual Studio 2008) introduces the much-needed improvements in the JavaScript handling area. We will take a look at some of them.

Intellisense Support

To begin with, the Intellisense support for JavaScript is much improved. Since JavaScript is a weakly typed language, it is to be expected that some Intellisense limitations will stem from the language itself. In Visual Studio 2008, it appears that every effort is being made to compensate for these.

An inclusion of keywords in Intellisense, for example:

Image 1

Since we are on the topic of efficiency, another neat feature introduced by Visual Studio 2008 is the transparency of the Intellisense window. Simply click the Control (Ctrl) key while the window is displayed, and you can see the code underneath it.

Screenshot - image003.png

JavaScript Includes and Intellisense

As mentioned above, while working on JavaScript intensive projects, one of the features I missed most often was the support for Intellisense from external library files. Visual Studio 2008 solves this problem by exposing all public methods and properties to the page you are including it in. For example:

Include YAHOO animation library file in your page:

JavaScript
<script src="yui/build/animation/animation.js" type="text/javascript"></script>

And immediately you get the following in your Intellisense window:

Screenshot - image005.pngScreenshot - image007.png

Visual Studio 2008 takes this concept a step further by allowing you to reference one include from inside another. For example, let's assume, that your JavaScript code is in an include file, and within your include you're using a third party solution, like Mootools or Script.aculo.us. In order to get the list of members from another file within your include you need to place a reference comment at the top of it. For example:

/// <reference path="yui/build/yahoo-dom-event/yahoo-dom-event.js" />
/// <reference path="yui/build/animation/animation.js" />

Intellisense Hints and Comments

The last new feature we'll look at is the Intellisense hints. You can add hints to your code in the following manner:

JavaScript
function SayHello(firstName, lastName)
{
  ///<summary>Returns a string of Hello plus passed names</summary>
  ///<param name="firstName" type="string">Person's first name</param>
  ///<param name="lastName" type="string">Person's last name</param>
  ///<returns>string</returns>
  return "Hello " + firstName + " " + lastName;
}

Notice, that the comments block is within the function block, not directly above it, as it would be in VB.NET or C#.

By using the above code, you get the following in your ASPX file:

Screenshot - image009.png

And then the parameter details will also display your comments:

Screenshot - image011.png

Notice, that, in the above example, type attributes are specified as string. These are provided for informational purposes only, but you may find them useful when coding.

At the time of this writing, Intellisense hints and comments were only available from includes, not from the code block within your current page. That means, that the above example will display comments and hints only when you place it in an include file, and then reference it in your ASP.NET page. If, however, you place this code in the same ASP.NET page's script block, the comments and hints will not be shown. It will be interesting to see, where Microsoft takes this feature in the final release.

Conclusion

Visual Studio 2008 brings many new features that will make the coding experience more rewarding, and hopefully, more expedient. Throughout the previous Visual Studio releases, JavaScript IDE integration has been somewhat neglected, but, with the advent of AJAX and Web 2.0 applications, it is finally getting the attention it deserves.

Useful Links

History

  • 4th November, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
Arkady Lesniara is a Senior System Analyst/Developer based in Toronto, Canada, specializing in .Net solutions that focus on ASP .Net, VB .Net, T-SQL, AJAX, and all related technologies.

Comments and Discussions

 
Generalthanks.. Pin
Michael Sync5-Nov-07 15:49
Michael Sync5-Nov-07 15:49 
GeneralRe: thanks.. Pin
Arkady Lesniara5-Nov-07 16:26
Arkady Lesniara5-Nov-07 16:26 
GeneralGood to Know Pin
merlin9815-Nov-07 4:00
professionalmerlin9815-Nov-07 4:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.