EXT 表单设计器(guibuilder)简单使用教程

说明: 本教程在我推荐的ajax/ext目录规范环境下开发,如环境不同,请自行修改相关路径

本项目框架及代码在此下载


1.打开项目

EXT 表单设计器(guibuilder)简单使用教程


2.在根目录下建立demo.html:

 

EXT 表单设计器(guibuilder)简单使用教程<html>
EXT 表单设计器(guibuilder)简单使用教程
<head>
EXT 表单设计器(guibuilder)简单使用教程
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
EXT 表单设计器(guibuilder)简单使用教程
<title>ExtJs Gui Designer Demo</title>
EXT 表单设计器(guibuilder)简单使用教程
<!-- The ExtJs base 2.02 -->
EXT 表单设计器(guibuilder)简单使用教程
<link rel="stylesheet" type="text/css" href="framework/ext-2.0.2/resources/css/ext-all.css" temp_href="framework/ext-2.0.2/resources/css/ext-all.css"/>
EXT 表单设计器(guibuilder)简单使用教程
<script type="text/javascript" src="framework/ext-2.0.2/adapter/ext/ext-base.js" temp_src="framework/ext-2.0.2/adapter/ext/ext-base.js"></script>
EXT 表单设计器(guibuilder)简单使用教程
<script type="text/javascript" src="framework/ext-2.0.2/ext-all.js" temp_src="framework/ext-2.0.2/ext-all.js"></script>
EXT 表单设计器(guibuilder)简单使用教程
EXT 表单设计器(guibuilder)简单使用教程
<!-- The Json Panel -->
EXT 表单设计器(guibuilder)简单使用教程
<script type="text/javascript" src="widget/Ext.ux.JsonPanel.js" temp_src="widget/Ext.ux.JsonPanel.js"></script>
EXT 表单设计器(guibuilder)简单使用教程
</head>
EXT 表单设计器(guibuilder)简单使用教程
EXT 表单设计器(guibuilder)简单使用教程
<body>
EXT 表单设计器(guibuilder)简单使用教程EXT 表单设计器(guibuilder)简单使用教程
<script>EXT 表单设计器(guibuilder)简单使用教程
EXT 表单设计器(guibuilder)简单使用教程EXT 表单设计器(guibuilder)简单使用教程
new Ext.Viewport(EXT 表单设计器(guibuilder)简单使用教程{
EXT 表单设计器(guibuilder)简单使用教程EXT 表单设计器(guibuilder)简单使用教程items : 
new Ext.ux.JsonPanel(EXT 表单设计器(guibuilder)简单使用教程{autoLoad:'modules/user.json'}),
EXT 表单设计器(guibuilder)简单使用教程layout: 
'fit'
EXT 表单设计器(guibuilder)简单使用教程}
).show();
EXT 表单设计器(guibuilder)简单使用教程
</script>
EXT 表单设计器(guibuilder)简单使用教程
</body>
EXT 表单设计器(guibuilder)简单使用教程
</html>
EXT 表单设计器(guibuilder)简单使用教程

 

注意 其中user.json就是GUIBUILDER中生成的代码.

3.打开GuiBuilder


EXT 表单设计器(guibuilder)简单使用教程

 

4.设计界面

1).首先双击 FormPanel,或把FormPanel拖进主面板

EXT 表单设计器(guibuilder)简单使用教程

2)接着拖动TextField进入FormPanle,并修改FieldLabel为"用户名",添加"id"属性为"username"

EXT 表单设计器(guibuilder)简单使用教程

3)再插入一个按钮button,添加handle事件

EXT 表单设计器(guibuilder)简单使用教程

4)点击click here to edit,弹出脚本编辑框,在其实输入:


function(){


alert(Ext.get("username").getValue());


}

输入,点击apply

EXT 表单设计器(guibuilder)简单使用教程

5) 点击 copy json,或打开edit json,拷贝其中的代码,将其另存为user.json

6) 打开demo.html

EXT 表单设计器(guibuilder)简单使用教程

上一篇:ext 2.0 渲染HTML表单 (含中文版日期选单控件)


下一篇:SQL Server 2005 hash联接算法