I've added a scenario where i need to use wicket:fragments.
Following is my parent html.
<html>
<body>
<wicket:child/>
</body>
</html>
Now i'm giving child html which will replace <wicket:child/> of my parent
html
<html>
<body>
<wicket:extend>
...
<span wicket:id="myPanel">Example input (will be removed)</span>
...
<wicket:fragment wicket:id="frag1">panel 1</wicket:fragment>
<wicket:fragment wicket:id="frag2">panel 2</wicket:fragment>
</wicket:extend>
</body>
</html>
The above situation is working fine in case of wicket 1.4, but now in
wicket 1.5.3 its giving me an error of No Markup found.
--
Balaji.N