...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> </view> |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> <contextmenu> <item action="weave.toc.zoomSelection" text="Zoom to Selection"/> <item action="weave.toc.clearSelection" text="Clear Selection"/> </contextmenu> </view> |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> <toolbar> <item action="com.cohga.html.client.map.select.clearAction"/> <item action="com.cohga.html.client.map.select.clearAllAction"/> <item action="com.cohga.html.client.map.select.zoomAction"/> </toolbar> <contextmenu> <item action="weave.toc.zoomSelection" text="Zoom to Selection"/> <item action="weave.toc.clearSelection" text="Clear Selection"/> </contextmenu> </view> |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> <entity>property</entity> <entity>owners</entity> <entity>roads</entity> </view> |
Note |
---|
The ordering of the entities in the list is also determined by the entity list. |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<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"/>. |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> </view> <defaults> <entities> <entity id="property" iconCls="icon-house"/> <entity id="owners" iconCls="icon-group"/> <entity id="roads" iconCls="icon-lorry"/> </entities> <defaults> |
Note |
---|
Icons listed in the defaults section will be used by other controls also, including the entity selector combo box and the spatial drill-down tool. |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> </view> <defaults> <entities> <entity id="property" iconCls="icon-house" group="Main"/> <entity id="owners" iconCls="icon-group" group="Main"/> <entity id="roads" iconCls="icon-lorry" group="Main"/> </entities> <defaults> |
Note |
---|
The title of the group for ungroupd items "Other" by default, but can be changed by setting the 'defaultGroupName' property for the entity selector view, and this value can be set via a resource. |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<view id="weave.entitySelectorView"> <location>east</location> <defaultGroupName>%ungrouped.entity.label</defaultGroupName> </view> <defaults> <entities> <entity id="property" iconCls="icon-house" group="Main"/> <entity id="owners" iconCls="icon-group" group="Main"/> <entity id="roads" iconCls="icon-lorry" group="Main"/> </entities> <defaults> |