我正在使用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>]'
});
答案 0 :(得分:2)
使用override css for tooltip class。
.x-tip {width: auto !important;}
.x-tip-body {width: auto !important;}
.x-tip-body span {width: auto !important;}