extjs4用图像问题替换按钮

时间:2012-12-12 16:41:57

标签: javascript extjs extjs4.1 extjs-mvc

所以我正在尝试用图像替换extjs按钮并让它显示一些工具提示。 问题是我只想显示图像,我不想要extjs按钮的背景。 这是我的代码如下。 为了了解我在说什么,这里是js小提琴: http://jsfiddle.net/nCkZN/7/

CSS:

.question {
    background-image: url(../www/css/slate/btn/question.png) !important;
    background-repeat: no-repeat;
}

使用Javascript:

{
    xtype: 'button',
    iconCls: 'question',
    tooltip: "<b>read-only</b>:Read-only users will have read only access to all pages<br> ",
    padding: '2 6 2 7',
    width: 20,
    height: 24
}

编辑:我用文本替换了按钮,只显示了图像。但它并没有显示工具提示。

{
    xtype: 'text',
    cls: 'question',
    tooltip: "<b>read-only</b>:Read-only users will have read only access to all pagess ",
    height: 20,
    padding: '12 6 2 7'
}

2 个答案:

答案 0 :(得分:6)

您可以通过CSS http://jsfiddle.net/nCkZN/10/

修改按钮的外观
Ext.create('Ext.form.Panel', {
    title: 'Contact Info',
    width: 300,
    bodyPadding: 10,
    renderTo: Ext.getBody(),
    items: [{
        xtype: 'button',
        cls: 'my-btn', // Add this so you can style the button
        iconCls:'questionIcon',
        tooltip:"<b>read-only</b>:Read-only users will have read only access to all pages<br> ",
        padding: '2 6 2 7'                    
    }]
});​

<强> CSS

.questionIcon {
  background-image:url(http://www.myimage.com/pic.png) !important;
  background-repeat: no-repeat;            
}

.my-btn {
  border-radius: 0;
  background-image: none;
  border: 0;
}

您也可以使用常规Ext.Img并为其添加工具提示。当您不想要按钮时,似乎比使用按钮更干净。 http://jsfiddle.net/nCkZN/15/

Ext.create('Ext.form.Panel', {
    title: 'Contact Info',
    width: 300,
    bodyPadding: 10,
    renderTo: Ext.getBody(),
    items: [{
        xtype: 'image',
        src:'http://www.southampton.ac.uk/isolutions/computing/elearn/blackboard/small_pen.gif',
        padding: '2 6 2 7',
        listeners: {
            render: function(cmp) {
                Ext.create('Ext.tip.ToolTip', {
                    target: cmp.el,
                    html: "<b>read-only</b>:Read-only users will have read only access to all pages<br> "
                });
            }
        }
    }]
});​

您真正想要的是一种向任何组件添加工具提示的方法。这是一个插件。

Ext.define('Ext.ux.Tooltip', {
    extend: 'Ext.AbstractPlugin',
    alias: 'plugin.ux-tooltip',

    /**
     * @cfg html The text to put into the tooltip
     */
    init: function(cmp) {
        var me = this;
        cmp.on('render', function() {
            Ext.create('Ext.tip.ToolTip', {
                target: cmp.el,
                html: me.html
            });        
        });
    }
});

现在可以轻松地将工具提示添加到任何组件http://jsfiddle.net/nCkZN/17/

Ext.create('Ext.form.Panel', {
    title: 'Contact Info',
    width: 300,
    bodyPadding: 10,
    renderTo: Ext.getBody(),
    items: [{
        xtype: 'image',
        src:'http://www.southampton.ac.uk/isolutions/computing/elearn/blackboard/small_pen.gif',
        padding: '2 6 2 7',
        plugins: {
            ptype: 'ux-tooltip', 
            html: '<b>read-only</b>:Read-only users will have read only access to all pages<br> '
        }
    }]
});

答案 1 :(得分:0)

background-image:url(../ www / css / slate / btn / question.png)!important;

第一个问题是你的网址周围需要单引号。

在你的jsfiddle中,改为:

.question{
  background-image:url('http://www.southampton.ac.uk/isolutions/computing/elearn/blackboard/small_pen.gif');
  background-repeat: no-repeat;
}​

其次,如果你实际上没有任何文字,你可能不想指定iconCls,你最好只传递一个cls。我认为iconCls就是你在配置中传递一个图标。