setThrottleDelay fails on AjaxFormComponentUpdatingBehaviour onkeyup
--------------------------------------------------------------------
Key: WICKET-468
URL: https://issues.apache.org/jira/browse/WICKET-468
Project: Wicket
Issue Type: Bug
Affects Versions: 1.3
Environment: IE 6
IE 7
Reporter: Alastair Maw
Fix For: 1.3
setThrottleDelay(Duration.ONE_SECOND) on AjaxFormComponentUpdatingBehaviour for
"onkeyup" on a TextField fails in Internet Explorer 6 and 7. Works fine in
Firefox 2.
Error message says null is, err null. (IE is helpful as ever). :-)
Microsoft script debugger stops here (whether it's right or not I've no idea):
function wicketKeyCode(event) {
if (typeof(event.keyCode)=="undefined") { <<<<<<
return event.which;
} else {
return event.keyCode;
}
}
I'd guess event is null, although I'm not sure how.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.