我的技術貼的首發地址:http://atian25.javaeye.com/

          天豬部落閣 - (ExtJS && AS3 && Java)

          專注于ExtJS && AS3 && Java

          常用鏈接

          統計

          FLASH

          WORK

          友情鏈接

          最新評論

          2009年8月13日 #

          ExtJS 3.0 在skpet里面的代碼提示 (含破解jar)

          原文地址:http://atian25.javaeye.com/blog/426824


          官方的extjs3.0包里面沒有提供ext.jsb文件.

          于是去官方論壇問了下, 3.0他們提供的是jsb2,基于json的.

          現在spket還不支持。

           

          有人重新做了個臨時的3.0的jsb文件,如附件。

           

          用法:

           

          1.下載后放到3.0的src目錄下 (一定要切記...我就是一時糊涂放錯了...在官方那鬧了笑話 -.-!!)

           

          2.然后在skpet中如下圖設置:

           


           

           

          3.設置為默認profile


           

          4.設置完后,關閉所有標簽頁 ,重啟skpet就ok了.

           

          5.提示效果如下圖:


           

           

          關于spket和extjs的ide,請參考:http://www.javaeye.com/topic/161161

           

           

          09.07.23更新:

          skpet出新版本了,支持extjs的jsb2.官方下載:

          Spket IDE 1.6.17 released - 22 July 2009

          http://spket.com/

           

          09.08.11更新

          spket1.6.16的破解包,覆蓋即可.

           下載地址見http://atian25.javaeye.com/blog/426824文末


          09.08.12更新:

          ext.jsb2已經包含在官方的壓縮包里面了.

          或者你可以從我另一篇blog中下載:http://atian25.javaeye.com/admin/blogs/445480

          注意:

          1.該jsb2文件需要spket1.6.17

          2.放置目錄為根目錄而不是src目錄 (跟前面的jsb文件不同)

           

          - by tz

          posted @ 2009-08-13 21:50 天豬 閱讀(2826) | 評論 (2)編輯 收藏

          ExtJS 2.3/3.0 定制你所需要的模塊

          原文地址:http://atian25.javaeye.com/blog/445480  
          天豬部落閣 - 專注于(ExtJS && AS3 && Java)
          附件地址見原文地址文末

          很實在的一個需求,就是我們只需要extjs的一部分功能,不想把整個類庫都包含進來.

           

          所以讓我們來定制extjs吧~

           

           

          1. ExtJS 1.1.1或2.3.0

           

          可以用官方的在線工具來定制:http://extjs.com/products/extjs/build/

           

          使用教程:

          e文:http://extjs.com/learn/Tutorial:Building_Ext_From_Source

          中文:http://extjs.org.cn/node/364

           

          2. EXTJS 3.0

           

          現在還沒有在線版,可以通過以下方法來自己定制:

           

          1. 下載Ext 3.0.0 SDK. http://extjs.com/products/extjs/download.php?dl=extjs3 
          2. 下載JSBuilder2. http://extjs.com/products/jsbuilder/   (或者看文末的附件)
          3. 下載Ext 3.0.0的ext.jsb2文件   http://extjs.com/forum/showthread.php?p=354473  (或者看文末的附件)

          4.  把JSBuilder2解壓jar到extjs根目錄下,ext.jsb2也放到根目錄下

          5.  用你的文本編輯器編輯ext.jsb2文件,僅保留你需要的模塊

          6.  jsb2文件中的deployDir: 'ext-3.0.0-build'表示相對輸出目錄

          7.  cmd,切換到ext根目錄下,執行:

           

          G:\Learning\Web\Javascript\ExtJS\ext-3.0.0> java -jar "JSBuilder2.jar" -p ./ext.jsb2 -d ./ 

           

          8.等待刷屏完畢后去你在jsb2中指定的目錄下找輸出吧.

           

           

          3.試驗

          一個試驗的例子,僅包含Tree組件,如附件

           

          1) resource部分未作過濾

          2) 注意依賴關系,如

                  name: 'Trees',
                  file: 'pkgs/pkg-tree.js',
                  isDebug: true,
                  pkgs: ['pkgs/cmp-foundation.js']

           

          3)輸出的文件樹如下:

           

          adapter\
          |--ext\
          |----ext-base.js 
          |----ext-base-debug.js

          pkgs\
          |--cmp-foundation.js 
          |--ext-foundation.js 
          |--pkg-tree.js 
          |--cmp-foundation-debug.js
          |--ext-foundation-debug.js
          |--pkg-tree-debug.js

          resources\
          license.txt

          posted @ 2009-08-13 21:48 天豬 閱讀(2399) | 評論 (1)編輯 收藏

          ExtJS 3.0 Designer Preview (官方的IDE可視化工具)

          原文地址: http://atian25.javaeye.com/blog/444581

           

          官方大爆料... http://extjs.com/blog/2009/08/10/ext-js-30-be-outstanding/

           

          Ext JS 3.0.0 Patch Release  --- 要收費...等流放吧 ^_^
          Ext JS Public Commit Log 
          JS Builder 2 
          CSS Refactor & Improvements 
          Memory Management Improvements

           

          Designer Preview

           

          Constructing your interfaces in code will be a thing of the past. We are releasing a Designer Preview that will allow you to experiment with the designer interface and to explore how configs affect your layout. Soon, you will be able to build your application components using base Ext components and Certified User Extensions.

          Code generation is currently not available. Our intentions are to charge a fee for this service and to enable our community to create and sell their creations on our marketplace. Our goals are lofty. We want to be the iTunes of Web App Development.

           

          附件中有下載.

           

          預覽版還不提供代碼生成功能.出了也是會收費的...

          不過嘛...群眾的智慧...

           

          另,安裝該AIR應用后,可以自己去看下\Ext Designer Preview\deploy\designer-complete.js的源碼.

          http://jsbeautifier.org/ 來格式化

          附件中也有格式化后的代碼,9k行.




          下載地址見http://atian25.javaeye.com/blog/444581文末



          posted @ 2009-08-13 21:46 天豬 閱讀(6751) | 評論 (3)編輯 收藏

          主站蜘蛛池模板: 凤冈县| 兖州市| 东源县| 依安县| 吉隆县| 古田县| 滨州市| 木里| 绵竹市| 涟源市| 临洮县| 客服| 温宿县| 石嘴山市| 阿拉善右旗| 同德县| 加查县| 江门市| 齐齐哈尔市| 杭锦旗| 道真| 嘉祥县| 乌恰县| 鹤岗市| 石棉县| 铁岭县| 九江市| 台东市| 常宁市| 垣曲县| 龙州县| 融水| 高邑县| 邵阳县| 营山县| 宁南县| 洪江市| 商洛市| 佛冈县| 玉环县| 图片|