If I have XPage with a Time field on it:
<xp:inputText id="inputText2" value="#{document1.Time}"
defaultValue="#{javascript:@Now()}">
<xp:this.converter>
<xp:convertDateTime type="time"
ignoreUserTimeZone="false"
timeStyle="full">
</xp:convertDateTime>
</xp:this.converter>
</xp:inputText>
My server is set to UK time, when I save the document and view it again, the time will be moved by one hour.
In my xsp.properties file, I have:
xsp.user.timezone=true
xsp.user.timezone.roundtrip=true
Is this an error or my server is configured incorrectly?
source
share