website logo
⌘K
Introduction
PORTAL
Agency Whitelabelling
PAGES
Pages - Accessing Page Data
Pagination Layouts
Page Templates
FORMS
Form Confirmation Pages
Adding a Progress Bar
Adding Custom CSS To Show Form Submit Process
Dynamic Content in Workflow and Autoresponder Emails
How to output Custom Field Set fields in a Form's Custom Layout
Custom JavaScript Validation for Forms
File Upload Previews
FAQ
CATEGORIES
Filtering WebApps and Modules by Categories
Outputting Categories on WebApp / Module / eCommerce Layouts
Outputting Category Fields in any Location
Category Detail Layouts
FAQ
COMPANY INFORMATION
Company Information
SITE SEARCH
Site Search
PUBLIC API/ZAPIER
Zapier - Formatting arrays correctly
Public API/Zapier Changelog
MODULES
Module Marketplace
Building Custom Modules
Siteglide Modules
Front-end Submit Modules
DATA STRUCTURES
Automations
Creating WebApps from the CLI
Field Types
WEBAPPS
Front-end Submit WebApps
Layouts
Search and Filtering
Understanding Custom Field Names and IDs
FAQ
CRM
User Details
User Secure Zones
Storing User's Favourite WebApp / Module Items
User's Form Submissions (Cases)
How Users Edit their Email and Password Front End
Editing a User's CRM record Front End with Custom Field Sets
CLI
Introducing Siteglide CLI
CLI Changelog
Secure Zones with CLI
Page Templates with Siteglide CLI
Pages with Siteglide CLI
Includes with Siteglide CLI
Managing Email Templates
Migrate - Manual Form setup
Migrate - Convert existing Forms
Liquid
Accessing Assets
Liquid Dot Notation
Using WebApp Collections- Tutorial
Using the current_user object with Secure Zones
Preventing Duplicate Content with Query Parameters- Canonical URL and Robots.txt
FAQ
GraphQL
Tutorial Overview
About GraphQL
Tutorial 1- Your First Query
Tutorial 2 - Pagination
Tutorial 3 - Filtering the Results
Tutorial 3 - Answers to the First Filtering Challenge
Tutorial 4 - Advanced Filtering
Tutorial 4 - Challenge Answers
Tutorial 5 - Using Liquid to run GraphQL queries on your Site
Tutorial 6 - Variables
Tutorial 6 - Answers to the Variables Challenge
Tutorial 7 - Sorting
Tutorial 8 - Building a Liquid API GET Endpoint Page powered by GraphQL queries
Best Practice and Performance
Module/WebApp Caching
Getting Started with Liquid Caching - to Reduce Server Response time and Improve Performance
Includes
ecommerce/checkout_standard
Frequently Asked Questions
Using Liquid Logic to Check if a field exists, or is empty on the Front End
How do I learn more about Liquid?
How to setup a multi domain start page
Docs powered by archbee 
8min

Field Types

Field Types available

A list of field types available on Siteglide and the corresponding platformOS data type applicable to them

Name

Siteglide Type

platformOS Type

Text (String)

input_text

string

Text (Multiline)

textarea

string

Checkbox

input_checkbox

array

Radio Button

input_radio

string

Dropdown (Single Item)

select

string

Dropdown (Multi Item)

select_multi

array

Datasource (Single Item)

datasource

integer

Datasource (Multi Item)

datasource_multi

array

Image (Single)

image

string

Image (Array)

image_array

array

File

file

string

Folder

folder

string

Date

date

integer

Number (Integer)

number_integer

integer

Number (Float)

number_float

float

Boolean

boolean

boolean

Custom Array

array_custom

array

Where are these field types available to use as Custom Fields?

  • Modules - All field types
  • WebApps - All field types
  • eCommerce Products - All field types
  • CRM Users - All field types
  • Forms - All field types except Custom Array
  • Custom Field Sets - All field types except Custom Array

Form Configuration metadata options

All field types have the following metadata options:

Name

Type

Notes

name

string

The field name to be shown in Siteglide Admin UI

type

string

The field type in the 'Siteglide Type' column above

live

boolean

Determines whether or not the field is shown or used anywhere

hidden

boolean

Determines whether or not the field is shown in Siteglide Admin UI

order

integer

The position the field is shown in Siteglide Admin UI and Import CSVs

editable

boolean

Determines whether you can edit this metadata in the Siteglide Admin UI builder views

required

boolean

Determines whether it is required to fill in this field in Siteglide Admin UI and front-end forms



Some other metadata options are available to specific field types:

Name

Type

Available for

Notes

rich_text

boolean

textarea

Determines whether the Rich Text editor appears in Siteglide Admin UI for this field

option

string

input_checkbox input_radio select select_multi

A comma separated string of options to be displayed for this field in Siteglide Admin UI

datasource_id

string

datasource datasource_multi

The ID of the model you want options to show from for this field in Siteglide Admin UI. This includes the type, for example webapp_1.

num_min

string

number_integer number_float

The minimum value this number field will allow the user to select.

num_max

string

number_integer number_float

The maximum value this number field will allow the user to select.

num_step

string

number_integer number_float

The amount the number will change by using the number scroller in Siteglide Admin UI.

num_precision

string

number_integer number_float

The amount of decimal places shown in Siteglide Admin UI.









Updated 12 Jan 2022
Did this page help you?
Yes
No
UP NEXT
Front-end Submit WebApps
Docs powered by archbee 
TABLE OF CONTENTS
Field Types available
Where are these field types available to use as Custom Fields?
Form Configuration metadata options