My view column is designed to show ALL time entries and I have verified that it displays "14:56:28:42" in my Notes view.
I'd like to display it in a view column in my viewPanel in Xpages but fails.
<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>
It shows zeros (000) for all milliseconds. If I add for instance "z" to the pattern it will display the timezone.
Please advice!