我的视图列旨在显示所有时间条目,并且我已验证它在我的 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”添加到模式中,它将显示时区。
请指教!