I'm using several Edit Boxes on an XPage. These Edit Boxes use the display type Date/Time and are designed to store and display date values. On my test server these Edit Box fields contain no default value when a new XPage is being created. On my production server the current date is always displayed as a default value. What could be the cause of this? Here is my code:
<xp:inputText id="Birthdate" value="#{document1.Birthdate}" defaultValue="">
<xp:this.converter>
<xp:convertDateTime type="date"></xp:convertDateTime></xp:this.converter>
<xp:dateTimeHelper></xp:dateTimeHelper>
</xp:inputText>