工具提示宽度不足以在其中显示文本。那么如何增加工具提示的宽度呢?这是我的代码:
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;
}
宽度正在增加,但工具提示文本未适应宽度。我想让工具提示文本变成一行。对此有任何想法..??
提前致谢。