My IE version is 6.0.2900.2180.xpxp_sp2_gdr.050301-1519

In wicket-ajax.js, I replaced 
t.setRequestHeader("Wicket-FocusedElementId", Wicket.Focus.lastFocusId ||
"");
with
if (Wicket.Focus && Wicket.Focus.lastFocusId) {
    t.setRequestHeader("Wicket-FocusedElementId", Wicket.Focus.lastFocusId
|| "");
}
else {
    // t.setRequestHeader("Wicket-FocusedElementId", "");
}
in both doGet and doPost methods. And now it works.


-----
http://ntsrikanth.blogspot.com/
-- 
View this message in context: 
http://www.nabble.com/javascript-error-in-internet-explorer-tp16732896p20090230.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to