1

我正面临使用 Ext JS 4.2 的垂直按钮工具提示问题,如下所示:

截屏

这是我的按钮配置:

var btnSubmit = Ext.create('Ext.button.Button', {
    text: 'Giriş',
    iconCls: 'icon-login',
    tooltip: '<b>Sisteme giriş yapmak için</b> tıklayınız...[<b><i>Enter</i></b>]'    
});
4

1 回答 1

2

对工具提示类使用覆盖 css。

.x-tip {width: auto !important;}
.x-tip-body {width: auto !important;}
.x-tip-body span {width: auto !important;}
于 2013-04-08T01:28:35.123 回答