如何在Xpage视图列中显示毫秒数?

时间:2013-02-27 14:37:22

标签: xpages

我的视图列旨在显示所有时间条目,并且我已经验证它在我的Notes视图中显示“14:56:28:42”。

我想在Xpages的viewPanel中的视图列中显示它但是失败了。

<xp:viewColumn
    columnName="$2"
    id="viewColumn1"
>
    <xp:this.converter>
        <xp:convertDateTime
            pattern="yyyy-MM-dd HH:mm:ss:SSS"
            >
        </xp:convertDateTime>
    </xp:this.converter>
    <xp:viewColumnHeader
        value="Created"
        id="viewColumnHeader1"
    >
    </xp:viewColumnHeader>
</xp:viewColumn>

它显示所有毫秒的零(000)。如果我在模式中添加例如“z”,它将显示时区。

请指教!

2 个答案:

答案 0 :(得分:1)

最简单的方法是在Notes视图中使用@Text()并让它在那里工作。

答案 1 :(得分:0)

这可能是由于笔记日期时间控件没有为数据添加毫秒精度(参见http://www.jeroensomhorst.eu/uncategorized/dont-forget-the-milliseconds-a-post-about-dates-and-datetime-comparison/)。至少这是我在使用日期/时间控件时发现的。