标题会自动截断

时间:2012-10-21 13:43:43

标签: sencha-touch extjs sencha-touch-2

我有一个奇怪的问题。我在工具栏或Ext.Msg.alert中指定的标题会自动截断,并且“' ...'附上。

enter image description here

如何摆脱这个?我想要工具栏,消息框和其他任何地方的完整标题。

2 个答案:

答案 0 :(得分:4)

这是Webkit中的一个错误,在sencha的论坛中报告,你可以推荐它herehere

css.sass文件中将其用作解决方案:

.x-title{padding:0 .3em;}
.x-title .x-innerhtml{padding: 0;}

或者:

.x-title .x-innerhtml:after {
    display: inline-block;
    content: '';       
    width: 0.3em;
}

答案 1 :(得分:0)

问题是由于默认情况下分配给.x-title的省略号属性。您需要将其更改为剪辑属性。

为您的配置提供cls属性。

例如:

cls:'textFormat',

然后在css文件中:

.textFormat .x-title .x-innerhtml{
    text-overflow : clip !important;
 }

此代码将覆盖特定工具栏的现有代码。