Hi Diana,
I just realised that my suggestion in previous post may not be able to resolve your issue specifically because Date Input Control does not have Client Side events configurable on it. So, when you click on a Date Input, you cannot get a hold on its “OnClick” event just by using the fetaures of the CAF Date Input Control.
However, this can still be achieved by using the JS Event Listeners and getting a reference on the Date Input Control.
I haven’t tested the following code, but this may potentially work with some tweaking.
var dateInput1 = document.getElementById('dateInput1');
dateInput1.addEventListener('click',function (e) {
$("#{activePageBean.clientIds['defaultForm']}").click();
},false);
Hope this helps,
Best regards,
Raj
#webMethods-BPMS#webMethods#MWS-CAF-Task-Engine