如何制作 ExtJS'按钮的背景图像在 Extjs 2.3 中正确显示

发布于 2024-12-01 05:25:58 字数 972 浏览 0 评论 0原文

我知道 Extjs 2.3 已经很老了,但我正在接管某人的工作。所以我现在束手无策。

好吧,我应该改变界面中的一些东西并添加新功能。 这是我的第一个真正的 ExtJS 作品(这里是 jquery boy)。

我想在按钮上添加新图标,但似乎我什至无法正确显示图像,因为我无法影响按钮的高度,无论是在按钮对象属性上还是在 css 中。 我所做的就是影响按钮的宽度。

这是我

  btntelButton = new Ext.Button({
            name: 'telbtn',
            id: 'btntel',
            cls : 'x-btn-icon',
            iconCls: 'telButton',
            minWidth : 95,
        });
    <style type="text/css">
       .telButton
        {
            height: 60px;
             background-image: url(images/tel.png) !important;
        }
    </style>

使用 telButton 类的尝试,背景图像出现但调整为最小尺寸,仅显示图像的一小部分“此处显示” 当我在按钮本身上使用样式时,就像

    //...
    id: 'btntel',
    cls : 'x-btn-icon',
    style: {height: '90px'}
    //...

显示 this 在过去的几个小时里我一直在拉我的头发。你们 Extjs 人会怎么做呢? 请说明这一点。感谢您的阅读

I know Extjs 2.3 is pretty old but i'm taking over someone's work here.so my hands are tied for now.

well i'm supposed to change few things in the interface and add new functionality.
this is my first real ExtJS work (jquery boy here).

i wanted to add new icons on a button and it appears i can't even get the image shown correcty as i can't affect the height of the button, either on the button object property, or in css.
all that i managed to do is affect the width of the button.

here is my attempt

  btntelButton = new Ext.Button({
            name: 'telbtn',
            id: 'btntel',
            cls : 'x-btn-icon',
            iconCls: 'telButton',
            minWidth : 95,
        });
    <style type="text/css">
       .telButton
        {
            height: 60px;
             background-image: url(images/tel.png) !important;
        }
    </style>

with the use of telButton class, the backgound images comes but resized to its minimum size, showing only a small portion of the imageshowing here
when i use the style on the button itself like

    //...
    id: 'btntel',
    cls : 'x-btn-icon',
    style: {height: '90px'}
    //...

it's shows this
i've been pulling my hair for the passed few hours. How would you Extjs folks do this?
please shed a light on this. Thanks for reading

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后知后觉 2024-12-08 05:25:58

您可以直接向按钮添加样式

例如:

style:{height:'60px'}

第二个想法是将您的 css 类声明为:

 .telButton
  {
      height: 60px;
      background-image: url(images/tel.png) !important;
  }

而不是 --> Button.telButton(不确定它是否会产生任何影响)

you can add a style directly to a button

For Example:

style:{height:'60px'}

Second thought would be declaring your css class as:

 .telButton
  {
      height: 60px;
      background-image: url(images/tel.png) !important;
  }

rather than --> button.telButton (not sure if it'll make any difference)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文