I have following markup:

 ...
 <div wicket:id="page">
   <h1>...</h2>
   <p>...</p>

   <div wicket:id="info">
   </div>

   <h2>Foo</h2>
 </div>

 <div wicket:id="fragment-1">
   <h2>Bar</h2>
   <ul>...</ul>
 </div>
 ...

When adding "fragment-1" (instance of Fragment) to "page", it renders using Wicket 1.4.* as:

 ...
 <div>
   <h1>...</h2>
   <p>...</p>

   <div>
   <h2>Bar</h2>
   <ul>...</ul>
   </div>

   <h2>Foo</h2>
 </div>
 ...

How can I make the Fragment not to render the div-tag around <h2>Bar...</ul>:

 ...
 <div>
   <h1>...</h2>
   <p>...</p>

   <h2>Bar</h2>
   <ul>...</ul>

   <h2>Foo</h2>
 </div>
 ...

Thanks in advance.

Tom

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to