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

 

http://extjs.com/blog/2009/08/10/ext-js-30-be-outstanding/

 

ext-designer破解:

import java.io.IOException;

import java.io.RandomAccessFile;

 

public class Patch

{

    /**

     * 破解须知: 

     * 1、xxx代表window xp的当前系统用户名,其他系统如vista、win7,只要找到那个文件路径即可

     * 2、path代表ext designer的安装路径

     */

    public static void main (String[] args) throws IOException

    {

        RandomAccessFile rf = new RandomAccessFile (

                                                    "C:/Documents and Settings/xxx/Local Settings/Application Data/Ext JS, Inc/Ext Designer/libion-1.0.2.0.dll",

                                                    "rw");

        RandomAccessFile rf2 = new RandomAccessFile ("path/libion-1.0.2.0.dll", "rw");

        rf.seek (31209);

        rf2.seek (31209);

        byte[] by = "\u00B3\u0001".getBytes ("ISO8859-1");

        rf.write (by);

        rf2.write (by);

        rf.close ();

        rf2.close ();

    }

}

 

 

 

官方大爆料...

 

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行.


ExtJS 3.0 Designer Preview (官方的IDE可视化工具)_第1张图片

 

 

2009.08.31 更新生成代码补丁

出处:http://bbs.extgui.cn/read.php?tid=27

覆盖到安装目录即可。

稍微看了下,还是有点小bug

去掉上面的2个NOID,NOCLASS按钮,可以省去不少垃圾代码

 

截图如下:


ExtJS 3.0 Designer Preview (官方的IDE可视化工具)_第2张图片

 

原文:http://atian25.iteye.com/blog/444581

 

你可能感兴趣的:(design)