Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The layout break is useful for creating sections within a page. This widget takes one attribute of render which can either be set to line or dash

Code Block
languagexml
<break render="line"/>

...

It is also possible to omit the render attribute altogether which will simply result in a break without rendering a line or dash. Visibility bindings are also supported.

Code Block
<!-- example 1 using function -->
<break render="line">
	<visible function="showLayoutBreak"/>
</break>

<!-- example 2 using variable -->
<break>
	<visible variable="showLayoutBreakVar"/>
</break>