2013-12-02
展开全部
p.getTopToolbar().add(new Ext.Toolbar.Spacer()); 这个笨方法可以,
Ext.onReady(function(){
Ext.BLANK_IMAAGE_URL ='../ext/resources/images/default/s.gif';
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
var p = new Ext.Panel({
title: 'My Panel',
collapsible:true,
renderTo: 'User_InfoMange',
width:400,
html:'<font color=blue>asdflkj<br/> aslkdfj <br/>lkajs lkfj<br/> alskdj f<br/></font>',
buttonsAlgin:'center',
// config:{
// buttonsAlgin:'center'
// },
tbar:[
]
});
for(var i=0;i<50;i++){
p.getTopToolbar().add(new Ext.Toolbar.Spacer());
}
p.getTopToolbar().add({text:"显示"});
});
上面的办法比较笨 ,要是不行的话 你在试试下面的。。。
用->',这是tbar里是按钮居右的符号,就像'-'是分隔符一样。
Code:
tbar:[{
xtype:"label",
text:"管理员:"
},{
xtype:"label",
text:Cookies.get("LogName")
},'->',{
xtype:"tbbutton",
id:"button_password",
text:"password",
handler:function(){
if(!win_password)
{
win_password = CreateWindow({
el:"win_password",
title:"修改密码",
items:CreateFormPanel(form_passwordConfig)
});
}
win_password.show("button_password");
}
},'-',{
xtype:"tbbutton",
id:"button_reg",
text:"register",
handler:function(){
if(!win_reg)
{
win_reg = CreateWindow({
el:"win_reg",
title:"修改密码",
items:CreateFormPanel(form_regConfig)
});
}
win_reg.show("button_reg");
}
},'-',{
xtype:"tbbutton",
text:"logout",
handler:function(){
Ext.MessageBox.confirm("警告","您确定要注销吗?",function(button){
if(button == "yes")
{
window.location = "../Default.aspx";
}
});
}
}]
Ext.onReady(function(){
Ext.BLANK_IMAAGE_URL ='../ext/resources/images/default/s.gif';
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
var p = new Ext.Panel({
title: 'My Panel',
collapsible:true,
renderTo: 'User_InfoMange',
width:400,
html:'<font color=blue>asdflkj<br/> aslkdfj <br/>lkajs lkfj<br/> alskdj f<br/></font>',
buttonsAlgin:'center',
// config:{
// buttonsAlgin:'center'
// },
tbar:[
]
});
for(var i=0;i<50;i++){
p.getTopToolbar().add(new Ext.Toolbar.Spacer());
}
p.getTopToolbar().add({text:"显示"});
});
上面的办法比较笨 ,要是不行的话 你在试试下面的。。。
用->',这是tbar里是按钮居右的符号,就像'-'是分隔符一样。
Code:
tbar:[{
xtype:"label",
text:"管理员:"
},{
xtype:"label",
text:Cookies.get("LogName")
},'->',{
xtype:"tbbutton",
id:"button_password",
text:"password",
handler:function(){
if(!win_password)
{
win_password = CreateWindow({
el:"win_password",
title:"修改密码",
items:CreateFormPanel(form_passwordConfig)
});
}
win_password.show("button_password");
}
},'-',{
xtype:"tbbutton",
id:"button_reg",
text:"register",
handler:function(){
if(!win_reg)
{
win_reg = CreateWindow({
el:"win_reg",
title:"修改密码",
items:CreateFormPanel(form_regConfig)
});
}
win_reg.show("button_reg");
}
},'-',{
xtype:"tbbutton",
text:"logout",
handler:function(){
Ext.MessageBox.confirm("警告","您确定要注销吗?",function(button){
if(button == "yes")
{
window.location = "../Default.aspx";
}
});
}
}]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
按照hbox布局就可以了,下面是代码,你可以复制到页面看看,
Ext.onReady(function(){
Ext.create('Ext.window.Window', {
width : 800,
height : 400,
autoShow : true,
items : {
xtype : 'panel',
title : 'Test',
tbar : Ext.create('Ext.toolbar.Toolbar', {
layout: {
type: 'hbox',
pack: 'end'
},
items : [{region : 'east', xtype : 'button', text : '1233'}]
})
}
});
});
Ext.onReady(function(){
Ext.create('Ext.window.Window', {
width : 800,
height : 400,
autoShow : true,
items : {
xtype : 'panel',
title : 'Test',
tbar : Ext.create('Ext.toolbar.Toolbar', {
layout: {
type: 'hbox',
pack: 'end'
},
items : [{region : 'east', xtype : 'button', text : '1233'}]
})
}
});
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询