Column Display Types#
Display types define the datastructure of each column. They can be very simple string or integer types, but there are also more complex types like a list of contact objects.
url_link#
url_link
A type for storing links with title & url. The data is stored in a sub document. When the table’s content is displayed in the portal only the title is shown to the user. In the edit mask for the table cell the user can modify url and title.
type name:
url_linkexample value:
"c123": {"title": "My title", "url": "https://test.link"}
url_link_list#
Same as url_link, but an actual list of these objects.
type name:
url_link_listexample value:
"c123": [{"title": "My title", "url": "https://test.link"}]
address_contact#
This is an object, with these parameters:
key |
display type |
|---|---|
firstname |
string |
lastname |
string |
string |
|
phone |
string |
mobile |
string |
user_id |
cp_user |
organisation_name |
string |
department_name |
string |
country |
string |
street |
string |
address_line1 |
string |
address_line2 |
string |
street_number |
string |
zip |
string |
city |
string |
url |
url |
comment |
string |