我注意到自从升级到ExtJS 4.2后,当文本字段中出现错误时显示的工具提示不足以查看工具提示的内容 - 它们似乎总是宽40px。
这是一个显示问题的测试用例:
<html>
<head>
<title>Field error tooltips</title>
<link rel="stylesheet" type="text/css" href="ext-4.2.0/resources/css/ext-all.css">
<script type="text/javascript" src="ext-4.2.0/ext-all-debug.js"></script>
</head>
<body>
<script type="text/javascript">
Ext.onReady(function(){
var form = Ext.create("Ext.form.Panel",{
title: 'My form',
width: 300,
height: 100,
items: [
{xtype: 'textfield', name: 'FIELD1', fieldLabel: 'Field 1', allowBlank: false}
],
renderTo: Ext.getBody()
});
});
</script>
</body>
</html>
在上面的示例中,如果单击该字段然后单击其中而不键入任何内容,则会显示一个工具提示,说明不允许为空。不幸的是,工具提示的宽度不足以查看消息。还有其他人遇到过这个吗?
谢谢!
答案 0 :(得分:27)
感谢帮助人员,但我在sencha论坛上找到了一个似乎有效的解决方案:
特别是应用开头的以下代码:
delete Ext.tip.Tip.prototype.minWidth;
答案 1 :(得分:15)
这是extjs 4.2的bug, 它适用于firefox 19但不适用于chrome 26
你应该覆盖工具提示的css类:
.x-tip {
width: auto !important;
}
.x-tip-body {
width: auto !important;
}
.x-tip-body span {
width: auto !important;
}
答案 2 :(得分:4)
抱歉,我无法提供太多帮助,这是4.2.0的已知问题,可能会在下一个版本中修复。请参阅:http://www.sencha.com/forum/showthread.php?257201
作为临时解决方法,如果您不需要动态调整tip容器的大小,则可以覆盖CSS
.x-tip-form-invalid, .x-tip-body-form-invalid {
width: 150px !important;
}
答案 3 :(得分:3)
仍然好奇地看着这个...
我尝试比较4.1和4.2来源。我认为问题出在某个地方的汽车容器布局中。 4.1到4.2之间的东西改变了。所以我们可以看看这个。
希望它适用于某些人。
if(Ext.isIE10) {
Ext.supports.Direct2DBug = true;
}
if(Ext.isChrome) {
Ext.define('Ext.layout.container.AutoTip', {
alias: ['layout.autotip'],
extend: 'Ext.layout.container.Container',
childEls: [
'clearEl'
],
renderTpl: [
'{%this.renderBody(out,values)%}',
'<div id="{ownerId}-clearEl" class="', Ext.baseCSSPrefix, 'clear" role="presentation"></div>'
],
calculate: function(ownerContext) {
var me = this,
containerSize;
if (!ownerContext.hasDomProp('containerChildrenDone')) {
me.done = false;
} else {
containerSize = me.getContainerSize(ownerContext);
if (!containerSize.gotAll) {
me.done = false;
}
me.calculateContentSize(ownerContext);
}
}
});
Ext.override(Ext.tip.Tip, {
layout: {
type: 'autotip'
}
});
}
Ext.QuickTips.init();
您可以查看更多详情on this forum topic。
答案 4 :(得分:3)
删除Ext.tip.Tip.prototype.minWidth并不能解决所有情况(在IE10上)的问题,并且添加
if(Ext.isIE10) {
Ext.supports.Direct2DBug = true;
}
修复工具提示但导致其他奇怪的问题(工具栏按钮边距有时会受到影响!)。我见过的最佳解决方案是:
Ext.override(Ext.tip.QuickTip, {
helperElId: 'ext-quicktips-tip-helper',
initComponent: function ()
{
var me = this;
me.target = me.target || Ext.getDoc();
me.targets = me.targets || {};
me.callParent();
// new stuff
me.on('move', function ()
{
var offset = me.hasCls('x-tip-form-invalid') ? 35 : 12,
helperEl = Ext.fly(me.helperElId) || Ext.fly(
Ext.DomHelper.createDom({
tag: 'div',
id: me.helperElId,
style: {
position: 'absolute',
left: '-1000px',
top: '-1000px',
'font-size': '12px',
'font-family': 'tahoma, arial, verdana, sans-serif'
}
}, Ext.getBody())
);
if (me.html && (me.html !== helperEl.getHTML() || me.getWidth() !== (helperEl.dom.clientWidth + offset)))
{
helperEl.update(me.html);
me.setWidth(Ext.Number.constrain(helperEl.dom.clientWidth + offset, me.minWidth, me.maxWidth));
}
}, this);
}
});
这似乎适用于IE9和10,Chrome和Firefox。
答案 5 :(得分:0)
另一个不太糟糕的解决方案是添加这个CSS:
.x-border-box .x-tip, .x-border-box .x-tip * {
box-sizing: content-box;
}
但工具提示有点太大了。
我将使用Ext.tip.QuickTip的覆盖来尝试user826840的解决方案。
答案 6 :(得分:0)
另一种解决方案是覆盖QuickTip的最小宽度,因为字段布局会创建不依赖于QuickTip单例的新QuickTip(与文档相反)。
Ext.override(Ext.tip.QuickTip,{
minWidth: 200
});
答案 7 :(得分:0)
使用<br/>
标签显示多行工具提示有时对解决宽度问题很有用。
const msg = 'bla bla...<br/>bla bla...'; // Here <br/> tag in html message.
Ext.create('Ext.tip.ToolTip', {
target: component.id,
html: msg
});
答案 8 :(得分:-1)
如果您在IE浏览器中遇到工具提示EXTJS 4.2.1的问题。您必须将以下行添加到ASPX页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">