Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 ExtJS IntelliSense

Is there a way to get ExtJS intelliSense in Visual Studio 2012? This combined with the new JavaScript support would make my ExtJS projects much easier to code.

like image 233
Niederee Avatar asked Nov 22 '13 22:11

Niederee


1 Answers

Adding reference path to ext-all within your js file will provide support. Specifically, using the ext-all-debug-w-comments provides supporting comments provided by sencha.

/// <reference path="../../../ext/ext-all-debug-w-comments.js" />
like image 78
weeksdev Avatar answered Nov 05 '22 03:11

weeksdev