Versions Compared

Key

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

...

Code Block
xml
xml
titlePanel with refined set of entities, using a different formatting, and custom icons
linenumberstrue
<view id="weave.entitySelectorView">
	<location>east</location>
	<entities>
		<entity id="property" iconCls="icon-house"/>
		<entity id="owners" iconCls="icon-group"/>
		<entity id="roads" iconCls="icon-lorry"/>
	</entities>
</view>

Note

Both forms of entity lists are supported, that is <entity> tags directly listed or embedded within an <entities> tag, this allows for the group of entities to be referenced as a whole using a snippet and included using <entities id="entitylist"/>.
Additionally both entity formats are supported, that is <entity>id</entity> and <entity attribute="value"/>, the first format is the equivalent of <entity id="id"/>, but the second format allows you to specify additional attributes.

...