工具提示寬度不足以在其中顯示文本。那麼我如何增加工具提示的寬度?這裏是我的代碼:如何增加標籤面板中工具提示的寬度?
Ext.onReady(function() {
Ext.tip.QuickTipManager.init();
Ext.create('Ext.tab.Panel', {
width : 500,
height : 200,
style : 'margin: 50px',
renderTo : Ext.getBody(),
items : [{
title : 'Tab One'
}, {
title : 'Tab Two',
tabConfig : {
tooltip : {
text : 'Hello tab one... This is James cook. How r u doing.:)',
title : 'Tooltip Header'
}
}
}, {
title : 'Tab Three'
}]
});
});
我用:
div.x-tip {
width: 300px !important; height: 100px !important;
}
寬度增加,但提示文本沒有調整的寬度。我想使工具提示文本成爲一行。任何想法在這.. ??
在此先感謝。