Versions Compared

Key

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

...

In this example users will only have access to the property, roads, parks and lights entities, with some additional settings being applied to the property and roads.

Entity selections

By default entity selections are preserved between client restarts, by setting the flag retainSelections to false for the client config the selections will be cleared when the client starts

Code Block
languagexml
<client:config id="editing" retainSelections="false">

  <!-- you could also set it like this -->
  <retainSelections>false</retainSelections>

  <!-- The rest of the client config goes here -->
</client:config>

Icons

You can create custom icons that can then be referred to in the client configuration by creating an icons directory within the ...\weave\platform\workspace directory, then any .gif or .png files within there will be available to use anywhere an iconCls attribute can be set. Note that if the icons directory doesn't exist when the server is started it will need to be restarted before icons are available for use.

...