Bugs item #1465676, was opened at 2006-04-06 14:02 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1465676&group_id=119783
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: 1.2 Status: Open Resolution: None Priority: 8 Submitted By: Martijn Dashorst (dashorst) Assigned to: Nobody/Anonymous (nobody) Summary: Regression: input type='radio' now require close tag Initial Comment: With the newest Wicket version, inputs with type="radio" suddenly require an open/close tag. Otherwise the components aren't added correctly. <span wicket:id="radio"> <input type="radio" wicket:id="check1"> <input type="radio" wicket:id="check2"> </span> doesn't work anymore. Changing this to the following fixes the behavior: <span wicket:id="radio"> <input type="radio" wicket:id="check1" /> <input type="radio" wicket:id="check2" /> </span> I have created a unit test that shows this behavior. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1465676&group_id=119783 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
