2011年11月7日 星期一

[ 常見問題 ] How to plugin ExtJS package in Eclipse? (spket)

Below show how to integrate plugin into Eclipse to develop ExtJS 

Step0 : Download ExtJS

Step1 : Download spket

Step2 : You may download spket-1.6.12.zip. Afterward, decompressed it and put two folders 'plugins' & 'features' into corresponding place of eclipse. Finally, start Eclipse and make some setting for spket. 

Step3 : Start Eclipse and enter Window -> Preferences. Find Spket item and choose JavaScript Profiles. Afterward, click on New button. 
 

Step4 :Add lib 
 

Step5 : Add lib files 
 

Ste6 : Set ExtJS as default 
 

Introduction to ExtJS packages 
adapter : Core codes and basic libs. 
air : 
build : The compressed code of ExtJS. 
docs : ExtJS developing document 
examples : Demo samples 
package : Package of ExtJS 
resource : Store resource such as picture and front-end decoration of ExtJS 
* ext-all.js : Core lib of ExtJS which need to be included in during developing. 
* ext-core.js : ExtJS core lib which need to be included in during developing. 
* INCLUDE_ORDER.txt : 
* LICENSE.txt : ExtJS Using permission document. 

補充說明 : 
Ext智能提示- Spket(Eclipse插件)

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...