I have a date field that won't show in Chrome or I.E., but shows fine in Firefox.
In Firefox:
In Chrome and I.E.
Here is the code:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xc="http://www.ibm.com/xsp/custom">
<xp:table>
<xp:tr>
<xp:td>Select a Date:  </xp:td>
<xp:td><xp:inputText id="selDate" title="Select a Date" value="#{viewScope.selDate}">
<xp:this.converter>
<xp:convertDateTime type="date"></xp:convertDateTime>
</xp:this.converter>
<xp:dateTimeHelper></xp:dateTimeHelper>
</xp:inputText>
</xp:td>
</xp:tr>
</xp:table>
</xp:view>
Can someone point in the right direction - How do I fix this?
UPDATE: I copied this test xpage to another db and the date field shows up fine in any browser, so there must be something specific about this one db that is causing it to not show up. There is no css loaded with this page, though, so what else would cause this?