Rendering Types
SharpSync supports multiple ways of displaying data on screen. The most common type is `FREE TEXT`
Free Text
The most common type of data to display. Shows the value as a string on screen
Checkbox
Renders the data as a checkbox. Supported values are '0','1', 'Yes', 'No'. Anything not in these values are rendered as unchecked
Select List
A simple selection box for user specified values. Separate values with a pipe symbol ' | '
Multi Select List
A selection box for multiple user specified values. Separate values with a pipe symbol ' | '. A user may pick more than 1 value from the list
Advanced List
A selection box for complex user specified values. The user must specify the Display Selector
, the Value Selector
and the items to pick from.
Items are specified using a JSON array [ {object1}, {object2} ]
Selections are made using the value of the Value Selector
e.g. if object1
contains a keyvalue pair of
{ 'id' : 23' , 'name' : 'andries' }
Then the value selector will be id
and the display selector will be name
Advanced Multi Select List
The same as an Advanced List, but the user can select multiple values
URL
Displays any value onscreen as 'link' and opens a new tab when clicked. Does not check for validity.
Last updated