"JS" 相关的信息如下,共 2条
[TOC]
###面板控件panel应用
```js
new Ext.Panel({
title:'面板头部(header)',
tbar : ['顶端工具栏(top toolbars)'],
bbar : ['底端工具栏(bottom toolbars)'],
height:200,
width:300,
frame:true,
applyTo :' ... ...
[TOC]
###简单的Ext.Ajax. request示例
```js
var requestConfig = {
url :'loginServer.jsp',//请求的服务器地址
params : {userName : 'tom',password : '123'},//请求参数
customer : '自定义属性',//附加属性
callback : functio ... ...