㈠ extjs的panel组件怎么使用
//html代码
<div id="container">
</div>
//js代码
var p = new Ext.Panel({
title: 'My Panel',//标题
collapsible:true,//右上角上的那个收缩按钮,设为false则不显示
renderTo: 'container',//这个panel显示在html中id为container的层中
width:400,
height:200,
html: "<p>我是内容,我包含的html可以被执行!</p>"//panel主体中的内容,可以执行html代码
});
因为panel组件的子类组件包括TabPanel,GridPanel,FormPanel,TreePanel组件,所以非常有必要介绍Panel组件的配置参数和相关的属性、方法。
//配置参数(只列举部分常用参数)
1.autoLoad:有效的url字符串,把那个url中的body中的数据加载显示,但是可能没有样式和js控制,只是html数据
2.autoScroll:设为true则内容溢出的时候产生滚动条,默认为false
3.autoShow:设为true显示设为"x-hidden"的元素,很有必要,默认为false
4.bbar:底部条,显示在主体内,//代码:bbar:[{text:'底部工具栏bottomToolbar'}],
5.tbar:顶部条,显示在主体内,//代码:tbar:[{text:'顶部工具栏topToolbar'}],
6.buttons:按钮集合,自动添加到footer中(footer参数,显示在主体外)//代码:buttons:[{text:"按钮位于footer"}]
7.buttonAlign:footer中按钮的位置,枚举值为:"left","right","center",默认为right
8.collapsible:设为true,显示右上角的收缩按钮,默认为false
9.draggable:true则可拖动,但需要你提供操作过程,默认为false
10.html:主体的内容
11.id:id值,通过id可以找到这个组件,建议一般加上这个id值
12.width:宽度
13.height:高度
13.title:标题
14.titleCollapse:设为true,则点击标题栏的任何地方都能收缩,默认为false.
15.applyTo:(id)呈现在哪个html元素里面
16.contentEl:(id)呈现哪个html元素里面,把el内的内容呈现
17.renderTo:(id)呈现在哪个html元素里面
//关于这三个参数的区别(个人认为:applyTo和RenderTo强调to到html元素中,contentEl则是html元素到ext组件中去):
英文如下(本人英语poor,不敢乱翻译):
contentEl - This config option is used to take existing content and place it in the body of a new panel. It is not going to be the actual panel itself. (It will actually the innerHTML of the el and use it for the body). You should add either the x-hidden or the x-hide-display CSS class to prevent a brief flicker of the content before it is rendered to the panel.
applyTo - This config option allows you to use pre-defined markup to create an entire Panel. By entire, I mean you can include the header, tbar, body, footer, etc. These elements must be in the correct order/hierarchy. Any components which are not found and need to be created will be autogenerated.
renderTo - This config option allows you to render a Panel as its created. This would be the same as saying myPanel.render(ELEMENT_TO_RENDER_TO);
哪位大人帮忙翻译下...
考虑到入门,方法事件会在以后的文章中以实例穿插。
1.可拖动的panel实例
下面我们做个可拖动panel例子来熟悉下panel这个最基本的组件.
//html代码
..无..
//下面创建一个允许拖动的panel,但是拖动的结果不能保存
var p=new Ext.Panel({
title: 'Drag me',
x: 100,
y: 100,
renderTo: Ext.getBody(),//x,y,renderTo:Ext.getBody()初始化panel的位置
floating: true,//true
frame: true,//圆角边框
width: 400,
height: 200,
draggable:true
}).show();//在这里也可以不show()
但是还不能拖到其他的地方,我们需要改写draggable:
draggable: {
insertProxy: false,//拖动时不虚线显示原始位置
onDrag : function(e){
var pel = this.proxy.getEl();
this.x = pel.getLeft(true);
this.y = pel.getTop(true);//获取拖动时panel的坐标
},
endDrag :
function(e){
this.panel.setPosition(this.x, this.y);//移动到最终位置
}
}
实现了可保存的拖动
拖动的时候阴影还在原位置,我们再在draggable中的onDrag事件中添加代码:
var s = this.panel.getEl().shadow;
if (s) {
s.realign(this.x, this.y, pel.getWidth(), pel.getHeight());
}
//shadow的realign方法的四个参数,改变shadow的位置大小属性
最后这个可拖动的panel的代码为:
var p=new Ext.Panel({
title: 'Drag me',
x: 100,
y: 100,
renderTo: Ext.getBody(),
floating: true,
frame: true,
width: 400,
height: 200,
draggable: {
insertProxy: false,
onDrag :
function(e){
var pel = this.proxy.getEl();
this.x = pel.getLeft(true);
this.y = pel.getTop(true);
var s = this.panel.getEl().shadow;
if (s) {
s.realign(this.x, this.y, pel.getWidth(), pel.getHeight());
}
},
endDrag : function(e){
this.panel.setPosition(this.x, this.y);
}
}
})
//效果图片我就不贴出来了
2.带顶部,底部,脚部工具栏的panel
var p=new Ext.Panel({
id:"panel1",
title:"标题",
collapsible:true,
renderTo:"container",
closable:true,
width:400,
height:300,
tbar:[{text:"按钮1"},{text:"按钮2"}], //顶部工具栏
bbar:[{text:"按钮1"},{text:"按钮2"}], //底部工具栏
html:"内容",
buttons:[{text:"按钮1"},{text:"按钮2"}] //footer部工具栏
});
我们已经在各种工具栏上添加了按钮,但是却没有激发事件,下面我们来添加按钮事件代码:
tbar:[{text:"按钮1",handler:function(){Ext.MessageBox.alert("我是按钮1","我是通过按钮1激发出来的弹出框!")}},{text:"按钮2"}],
//改写tbar,添加handler句柄,点击顶部工具栏上按钮1,弹出提示框,效果图大家想象下,就不贴出来了
当然,一般情况下,我们只要一个工具栏,这里只是为了演示!
3.panel工具栏
//添加下面的代码到panel配置参数中
tools:[{id:"save"},{id:"help"},{id:"up"},{id:"close",handler:function(){Ext.MessageBox.alert("工具栏按钮","工具栏上的关闭按钮时间被激发了")}}],
//id控制按钮,handler控制相应的事件
//id的枚举值为:
toggle (collapsable为true时的默认值)
close
minimize
maximize
restore
gear
pin
unpin
right
left
up
down
refresh
minus
plus
help
search
save
print
㈡ extjs中添加10个tabpanel各并带一个panel怎么实现
自定义一个formpanel 扩展类, 用数组来存放 每个formpanel的数据
FormClass=Ext.extend(Ext.FormPanel,{
frame:true,
layout:'table',
trackResetOnLoad:false,
layoutConfig:{columns:3},
defaults:{labelAlign:'right',labelWidth:90,frame:false,layout:'form'},
initComponent:function(val_arr){
varthat=this;
this.fields_arr['id']=newExt.form.TextField({name:'id',fieldLabel:'id',value:val_arr['id']});
this.fields_arr['name']=newExt.form.TextField({name:'name',fieldLabel:'name',value:val_arr['name']});
//formpanel的元素和值都用数组包含给不同的数组就展示不同的数据
Ext.apply(this,{
items:[this.fields_arr['id'],this.fields_arr['name']]
});
FormClass.superclass.initComponent.call(this);
},
}
//使用时
formpanel=newFormClass(newarray('id':001,'name':'name1'))
formpanel2=newFormClass(newarray('id':002,'name':'name2'))
㈢ extjs table 文字垂直居中 怎样使单元格的文字纵向居中
浏览器打开开发人员专工作属F12
.x-grid3-row td, .x-grid3-summary-row td {
line-height: 13px;
vertical-align: middle;
padding-left: 1px;
padding-right: 1px;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: ignore;
}
㈣ 在ExtJs中,TabPanel中如何布局,让两个文本框在一行显示呢
两个组件显示到一行就用布局,从你需要的效果来看,有两种方法:
1、要用到两个布内局的结合,分别是容column和form布局;
2、用一种布局加panel代替显示原来组件的fieldlabel;
我个人比较偏向第一种,代码如:
...
layout:'column',
items:[
{
columnWidth:.5,
layout:'form',
items:[sexTextFiled] //sex 的组件
},{
columnWidth:.5,
layout:'form',
items:[dateField] //date 的组件
}
]
顺便说下为什么要两种布局组合,因为column布局的效果不能显示fieldLabel,只有form布局可以显示fieldLabel。当然,你要的效果也有其他方法可以实现,希望对LZ有帮助。
㈤ ExtJS如何使panel 的内容居中显示
试下将panel渲染到某个居中显示div里面。
panel加入这个配置项:renderTo:'div1'
HTML相关代码:<div id="div1" style="margin:0 auto; width:[panel的宽度]"></div>
㈥ 在Extjs中,我想通过点击一个按钮,然后在一个TabPanel中加入一个Panel组件,请问怎么做
var centerPanel = Ext.create('Ext.TabPanel', {
region: 'center',
deferredRender: false,
activeTab: 0,
items: []
})
var ftab = Ext.create('Ext.Panel', {
tpl: new Ext.XTemplate('<iframe style="width: 100%; height: 100%; border: 0;padding:4px 4px 4px 4px;" src="{url}"></iframe>'),
load: function (b) { this.update(this.tpl.apply(b)) }, clear: function () { this.update("") },
title: '首页',
autoScroll: true
});
ftab.load({ url: '<%=Url.Action("Welcome",new{ controller="Home"}) %>' });
centerPanel.add(ftab);
function trsel(view, record, item, index, e) {
if (record.raw.leaf) {
var tab = centerPanel.getComponent("tab" + record.raw.id); //获取tab对象
if (!tab) {//如果tab不存在,就创建并添加到中
tab = Ext.create('Ext.Panel', {
tpl: new Ext.XTemplate('<iframe style="width: 100%; height: 100%; border: 0;padding:4px 4px 4px 4px;" src="{url}"></iframe>'),
load: function (b) { this.update(this.tpl.apply(b)) }, clear: function () { this.update("") },
id: "tab" + record.raw.id,
title: record.raw.text,
closable: true,
autoScroll: true
});
tab.load({ url: '/' + record.raw.menu_area + '/' + record.raw.menu_controller + '/' + record.raw.menu_action });
centerPanel.add(tab);
}
centerPanel.setActiveTab(tab); //设置显示当前面板
}
};
函数是点击菜单树时调用的。你自己调整一下,点按钮时调这个函数就可以。不过网上说用iframe不好,我也想看看有没有其他的方法
㈦ ExtJS TabPanel获取组件问题
1一般常用的方法是给新增的panel 设定itemId , 用 容器.getComponent(itemId)来获取这个组件.(推荐)
vartabs=newExt.TabPanel({
renderTo:document.body,
itemId:"tablpanel1"
height:100
});
tabs.add({
title:'标题1',
itemId:"panel1"
html:'内容1'
});
varnewp=tabs.getComponent("panel1")//newp是新增的记录
2 给新增的panel 设定Id 用 Ext.body.getCmp(ID)来获取这个组件. (不推荐)
vartabs=newExt.TabPanel({
renderTo:document.body,
itemId:"tablpanel1"
height:100
});
tabs.add({
title:'标题1',
id:"panel1"
html:'内容1'
});
varnewp=Ext.body.getCmp("panel1")//newp是新增的记录
3. 设置全局变量为新增的panel 使用时直接用 变量名来引用.(不推荐)
varnewp=newExt.Panel({
title:'标题1',
id:"panel1"
html:'内容1'
});
vartabs=newExt.TabPanel({
renderTo:document.body,
itemId:"tablpanel1"
height:100
});
tabs.add(newp)////newp是新增的记录
4. 在自定义类中用 属性名 为新增的panel, 用属性名来引用 获取(推荐)
this.newp=newExt.Panel({
title:'标题1',
id:"panel1"
html:'内容1'
});
this.tabs=newExt.TabPanel({
renderTo:document.body,
itemId:"tablpanel1"
height:100
});
this.tabs.add(this.newp);//this.newp是新增的记录