Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Oops...using h5 produced some funkiness in the toc

...

Wicket will not automatically expand an open-close tag during the rendering phase. You should always include open and close tags in your markup when you want Wicket to include content in the tag body.

Code Block
html
html
titleDon't do this

...

code
<textarea wicket:id="mytext" />
Code Block
html
html
titleDo this

...

code
Instead
<textarea wicket:id="mytext">Content to be replaced by Wicket</textarea>

...