Hi, Am i missing something, this doesnt seem to work.
I have a WebDateChooser on the page. I add the client side event:
dteCtrl.ClientSideEvents.InvalidDateEntered =
"InvalidDateEntered"
My Javascript function is as follows:
function InvalidDateEntered(oDateChooser,oDate,oEvent){
oDateChooser.setValue(
null);oDateChooser.setText(null);
oDateChooser.date=
null;oDateChooser.editor.good=null;
alert(
"hello");
}
The Function is being called but the value of the field is still being set to the First good date. I am using v8.2. How can I disable this functionality of first good date?
Regards
Chris