EditLive! 9 Documentation : trackChanges

Description

This element defines which colors are used for remove or change operations performed when using the Track Changes functionality of EditLive!. The color specified for either of these operations will appear the same for every EditLive! user.

Configuration Element Tree Structure

<editLive>
<wysiwygEditor>
<trackChanges>

<editLive>
  ...
  <wysiwygEditor>
    <trackChanges />
  <wysiwygEditor/>
  ...
</editLive>

Optional Attributes

remove

The color used by EditLive! to represent any remove operations performed in the editor when using Track Changes. The value specified by this attribute needs to be the hexadecimal representation for the desired color (e.g. remove="#FF0000").

change

The color used by EditLive! to represent any change operations performed in the editor when using Track Changes. The value specified by this attribute needs to be the hexadecimal representation for the desired color (e.g. change="#FF0000").

Example

The following example demonstrates how to configure Track Changes to render all change operations by all users as blue (represented by #00EEEE) and render all remove operations by all users as red (represented by #FF0000).

<editLive>
  ...
  <wysiwygEditor>
    <trackChanges remove="#FF0000" change="#00EEEE" />
  </wysiwygEditor>
  ...
</editLive>