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 utility helper functions that intellisense fails to understand.
ie. ExtJS code
// convenience function to create namespace object placeho...
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 certain way?
I've seen <private /> in jquery vsdoc file that implies exactly this behaviour, but doesn't meet my expectations
{
__hiddenFie...
Hi
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 a ScriptManagerProxy, every script, even the MicrosoftAjax.js, dissapears from the intellisense.
I believe there is some sort of bug ...
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 page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestScriptLoader._Default" %>
<!DOCTYPE html PUBL...
Hello,
How do I get intellisense for Prototype / Scriptaculous like we get for jQuery in Visual Studio??
Thanks...
...
How would I achieve something along the lines of this..
var Persistence = new Lawnchair('name');
Object.extend(Lawnchair.prototype, {
UserDefaults: {
setup: function(callback) {
// "save" is a native Lawnchair function that doesnt
//work because
// "this" does not reference "L...
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 that when I type 3 forward slashes inside of a javascript function, I do not get the autocomplete which includes the summary tag and any pa...
I've got an issue with JavaScript intellisense in Visual Web Developer 2008, which I'm starting to believe is "just one of those things", but thought I'd ask here just to check.
I have a file MyOtherFile.js with a function GetRandomNumber() defined like so:
function GetRandomNumber() {
/// <summary>
/// Summary description for ...
Hi.
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 about 40 individual references like this:
/// <reference path="../../lib/jquery-1.3.2.js" />
to each js file in solution. Maybe there...