Details
Description
An enclosure like:
<wicket:enclosure child="message">
<span wicket:id="message" />
<a href="#" wicket:id="link"></a>
</wicket:enclosure>
fails with:
org.apache.wicket.WicketRuntimeException: The component(s) below failed to render. Possible reasons could be that: 1) you have added a component in code but forgot to reference it in the markup (thus the component will never be rendered), 2) if your components were added in a parent container then make sure the markup for the child container includes them in <wicket:extend>.
1. [ExternalLink [Component id = link]]
It will report failed rendering for all components within the enclosure except the child.
This works if I turn the enclosure into an inline enclosure:
<div wicket:enclosure="message">
<span wicket:id="message" />
<a href="#" wicket:id="link"></a>
</div>
I got this error when upgrading from Wicket 6.2.0 to 6.3.0.
I also noticed that the AjaxEnclosureListener only visits the InlineEnclosures.