Skip to content

Basic Widget Configuration

The Basic widget configuration includes the widget type, title and other fields that are relevant for the selected widget type.

Basic Configuiration

Depending on the widget type, different configuration fields will be presented from the following list:

NameDescription
acceptFile types to accept for the File upload widget
datetimeSet to "date", "time" or "datetime" for the date input widget.
fieldDatabase field to update for input widgets
fieldsDatabase fields to display for table widgets
footerWidget footer to display at the bottom of the widget
formAssociated form widget to post input form fields
formatWidget numeric format string
headerWidget header text to display at the top of the widget
itemsSelection items to use with input select and combo widgets
labelInput field label
maxMaximum expected data value
minMinimum expected data value
multipleAllow multiple selections for an input combo widget
pivotPivot the table widget data. Rows vs columns.
placeholderPlace holder text to use for input text widgets.
prefixText prefix to display before the value for numeric widgets.
presentationGraph presentation.
rowsNumer of rows to display for a text area input widget
subtitleSubtitle to display for the table widget
suffixSuffix text to display after a numeric value
textStatic text to use for the widget value
timezoneTimezone to use for the date input wiget
urlURL to use for image and sound widgets
validateRegular expression to use for validating text inputs.

Formatting Numerics

The format field is used when formatting numberic widgets.

For example, the following will format numbers with an optional sign followed by the number portion with thousand separators and one decimal place. The number will be rounded up.

-0#,###.#^

The formatter characters are:

CharacterDescription
0digits with leading zero

| digit

, | Thousand separators % | format as percent

  • | Always show sign
  • | Show sign if negative ^ | Round up v | Round down