Hi,
I have a Date field, which if I do NOT enable the datepicker, allows me to trigger partial page refreshes via the onchange event.
However, if the datapicker is enabled, the onchange event (client or server) does not trigger (the “onclick” event being the only event that triggers when the datepicker is used).
I have tried amending the source for the dateTimeHelper as follows, but to no avail:
<xp:eventHandler event=“onchange” submit=“true” refreshMode=“partial” refreshId=“Panel1”>
<xp:this.handlers>
<xp:handler type ="text/javascript">
<xp:this.script><![CDATA[alert("onchange");]]>
</xp:this.script>
</xp:handler>
</xp:this.handlers>
</xp:eventHandler>
</xp:dateTimeHelper>
Can anyone help me get around this please?
Thanks in anticipation… John
Also, there appears to be no “cancel” option on the datepicker - once displayed, a date has to be chosen. Have I missed something here?