IE bug causes wicket problems when id auto generation is active
---------------------------------------------------------------
Key: WICKET-1632
URL: https://issues.apache.org/jira/browse/WICKET-1632
Project: Wicket
Issue Type: Bug
Components: wicket
Environment: Internet Explorer (Verified on version 6.0)
Verified in wicket 1.3.3
Reporter: Tom Desmet
http://www.nabble.com/IE-bug-causes-wicket-problems-when-id-auto-generation-is-active-td17231936.html
There seems to be a bug in Internet Explorer in the following scenario ...
<html>
<head></head>
<body>
<form id="ic"><img id="id"/></form>
<script language="javascript">
var form = document.getElementById('ic');
alert(form.getAttribute('id'));
</script>
</body>
</html>
If an image on a form has an id that has as id content the text "id", then
something strange happens in IE.
You get an [object] instead of the actual id content. This can happen when the
wicket automatic id generation is used.
Could there be a workaround included within wicket to avoid this bug?
(We have spent quite some time to debug this issue, so if wicket can include a
workaround, it can save others the same debugging work)
Thank you very much.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.