关于sencha touch 2:SenchaTouch2 – NestedList – Title \\”cut off\\”

SenchaTouch2 - NestedList - Title "cut off"

我创建了一个 NestedList,其中包含一些数据.. 一切都按预期工作。但是有一件奇怪的事情..

标题的最后 2 个字符总是用点代替 - 我不知道为什么...

有什么解释吗?


根据 http://www.sencha.com/forum/showthread.php?228621-Short-titles-in-title-bar-also-gets-clipped-with-text-ellipsis 它在 2.1 中修复。 0-b2

据我判断是 CSS 问题,因为在真机(iPhone 测试)上没有这样的怪癖

干杯,奥列格


这个问题可以用这个解决方案来解决,它只在必要时显示点:

1
2
3
4
5
.x-title .x-innerhtml:after {
    content: '';
    display: inline-block;
    width: .3em; /* equal to the amount of padding on the element */
}