Ext中应用iconCls

来源:互联网 发布:网络虚拟婚姻 编辑:程序博客网 时间:2024/05/11 09:51

1:给button加icon
Css:
.user
{
      background:url(../Teacher/Images/User.gif) no-repeat 1px 2px !important;
}
EXT:
new Ext.Button({
                text:'User',
                iconCls:"user",
                renderTo:'btn',
});
其中!important要加上否则ext原有样式会覆盖自定义!
2:给tabpanel项加icon
Css:
.t1
{
      background:url(../Teacher/Images/User.gif) no-repeat 1px 2px;
}
EXT:
{title:"Tab1",  iconCls:"t1"}
要想更改背景可以设置baseCls方法同上

通过设置css要比加html标记好的多

原创粉丝点击