Tagged Questions
The javascript-intellisense tag has no wiki summary.
13
votes
2answers
1k views
Referring to JavaScript files in Razor views to get JavaScript Intellisense
Visual Studio offers JavaScript Intellisense. It's smart enough to see that you refer to JavaScript files in your master pages (for example jQuery file) and then offers statement completion in any ...
9
votes
5answers
832 views
How to reference multiple files for javascript IntelliSense in VS2010
I have large solution with about 40 separate javascript files, which are referenced to web page via special js-service. I want to use new IntelliSense features in VS2010, but it is very hard to add ...
5
votes
1answer
400 views
Generate Javascript intellisense file for a .NET Class
I have a .net control which is intended for use as an ActiveX control in web pages, instantiated thus:
<object id="TheControl" name="TheControl" ...
5
votes
3answers
688 views
Javascript Intellisense not showing everything
Brainstorming needed. I have a problem with Javascript libraries (jQuery, ExtJS etc.) that don't seem to play well along with Javascript Intellisense built in Visual Studio 2008. They provide certain ...
2
votes
1answer
115 views
Using Jquery 1.4.2 in an ASP.NET app - Error updating JScript IntelliSense
I am trying to just add a reference to jquery in my ASP.NET project, and get this when I do: "Error updating JScript IntelliSense ... Object doesn't support this property or method."
I read that I ...
2
votes
0answers
236 views
JScript intellisense with ScriptManagerProxy
I've got a problem making my ScriptManagerProxy expose registered scripts.
When I add a ScriptManager, everything works as expected and the scripts are reflected correctly, but whenever I change it to ...
2
votes
2answers
154 views
Hiding privates from Javascript Intellisense
Is it possible to hide certain functions/fields from displaying in javascript intellisense drop down list in Visual Studio 2008? Either by javascript documentaion XML of by naming privates in a ...
1
vote
2answers
86 views
What free javascript editor can do this kind of intellisense
I'm looking for this specific type of intellisense workflow.
This is what i used for 10 years working with VB6 IDE.
And this is how i like the intellisense to work...
Say i'm coding a javascript ...
1
vote
1answer
365 views
How do I get JavaScript Intellisense from vsdoc file references in WebMatrix 2 Beta?
I copied a JavaScript file over from Visual Studio to a new WebMatrix 2 Beta project only to find out the vsdoc file wasn't being used for JavaScript Intellisense.
/// <reference ...
1
vote
0answers
95 views
Visual Studio dynamic javascript reference intellisense from locahost
It appears that Visual Studio 2010 will skip references that are not formatted http://x.x... I'm trying to use
/// <reference path="http://localhost:12946/js/fancytest" />
to generate ...
1
vote
4answers
269 views
javascript intellisense in Visual Studio
How can I get JavaScript IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
How can I get jQuery IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
If I fail to get the above, ...
1
vote
1answer
901 views
Visual Studio 2010 Javascript Intellisense not working properly
There's a little problem with Visual Studio 2010 and Javascript Intellisense.
I've implemented a class with some "Properties" and want to implement a "static" function, which returns a new instance ...
1
vote
1answer
402 views
VS 2010 Javascript Intellisense not working
I am writing javascript code which uses jQuery and unfortunately when I create a .js file with the following:
/// <reference path="jquery-1.4.2.js" />
(function($) {
// use $ here
...
1
vote
3answers
339 views
Prototype / Scriptaculous intellisense in Visual Studio
How do I get intellisense for Prototype / Scriptaculous like we get for jQuery in Visual Studio?
1
vote
2answers
285 views
Is it possible to have VS 2008 Javascript Intellisense in a usercontrol?
I have been banging my head against this for a little while now. I just can't seem to get intellisense to work in a ascx user control, but it works fine in a plain old aspx.
Here is a sample aspx ...
0
votes
0answers
14 views
Workaround for VS 2010 JScript intellisense not allowing references outside project?
I am using the // <reference path="..." /> xml tag to bring in other script files for intellisense.
I have a separate project for NQUnit tests and would like intellisense there for my WebApp's ...
0
votes
0answers
20 views
Any idea on implementing JavaScript code intellisense in Webpage
I am trying to develop a code intellisense support for online source code editor. Anyone having previous experiences please share your experiences on developing this.
0
votes
1answer
105 views
Loading jQuery VSDoc in WebMatrix
Quick question here. I'm trying to get jQuery intellisense in WebMatrix 2 Beta using the CDN. I create a blank .js file with the following line (note WebMatrix 2 Beta uses "file" instead of "path"):
...
0
votes
1answer
85 views
Visual Studio Intellisense for JavaScript when generated from JavaScriptSerializer
What is the correct way for getting JavaScript Intellisense in Visual Studio 2010 when creating a client side object with the JavaScriptSerializer?
For example, I have a class named Record with ...
0
votes
0answers
32 views
JS references not “propagating” through referenced files
I have a file named references.js, in which I've added xml comments to reference all the js files I'm using in various places in my project.
/// <reference path="/js/jquery-1.4.1-vsdoc.js"/>
...
0
votes
1answer
182 views
How do I add Jquery VS intellisense reference to my view in VS 2010
I am trying to get Jquery intellisense working in Visual Studio 2010.
I've looked around on StackOverflow and tried adding this to my view:
@{
/// <reference ...
0
votes
0answers
179 views
Debug/Intellisense not working in Visual Studio 2008 after installing Beta SP2
I have just installed VS2008 Service pack 2 beta and I have 2 problems:
1) The Debug button has been greyed out
2) Javascript Intellisense works but the C# code behind doesn't.
I have tried to go to ...
0
votes
0answers
30 views
Another Visual Studio 2008 Javascript Intellisense Question
I have a fresh install of Visual Studio 2008. After installing that I installed the TFS plugin. Then VS 2008 Service Pack 1 and finally I installed the vs doc hotfix.
The problem I need help with is ...
0
votes
2answers
390 views
Prototypes Object.extend with multiple objects that contain there own functions
How would I achieve something along the lines of this..
var Persistence = new Lawnchair('name');
Object.extend(Lawnchair.prototype, {
UserDefaults: {
setup: function(callback) {
...
-3
votes
2answers
54 views
Intellisense while editing JS files
I am creating project in Visual Studio. While editing JS in a HTML file, since we have included the reference to all JQuery files on top, we get intellisense for jquery instances. But, when we are ...