Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Wicket will not automatically expand an empty element (i.e., an element that is expressed as a single tag ending in "/>") during the rendering phase. You should always include both an open tag and a close tag in your markup when you want Wicket to include content in the tag body.

Code Block
html
html
titleDon't do thishtml
<textarea wicket:id="mytext" />
Code Block
html
html
titleDo this Insteadhtml
<textarea wicket:id="mytext">Content to be replaced by Wicket</textarea>

...