0

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

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

有什么解释吗?

4

2 回答 2

1

根据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测试)上没有这样的怪癖

干杯,奥列格

于 2012-08-04T13:08:22.393 回答
0

This can be fixed with this solution, which only shows dots when necessary:

.x-title .x-innerhtml:after {
    content: '';
    display: inline-block;
    width: .3em; /* equal to the amount of padding on the element */
}
于 2012-10-18T08:21:12.810 回答