Skip to content
Chriztian Steinmeier edited this page Aug 24, 2015 · 5 revisions

The picker property editors can be configured with a Save Format to determine how the selected items are stored:

CSV

"keyValue1, keyValue2, ..."

JSON

[
  { 
    'key' : 'keyValue1', 
    'label' : 'labelValue1'
  },
  { 
    'key' : 'keyValue2', 
    'label' : 'labelValue2'
  },
  ...
]

XML

<Picker>

  <Picked Key="keyValue1">
    <![CDATA[labelValue1]]>
  </Picked>

  <Picked Key="keyValue2">
    <![CDATA[labelValue2]]>
  </Picked>

  ...
</Picker>

In addition to these save formats, there's also a Relations Only option where a local value is not stored, this causes the relations data to be become the primary data source.

Clone this wiki locally