Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • a checkbox field called "includeActiveOnly"
  • a dropdown field called "choices" with choices values loaded from
    • a database table
    • another form

...

Let's start with the one which has a dropdown field with the values loaded from a database table

A table we connect as a dropdown source has the following structure

IDNAMEIS_ACTIVE
1This onetrue
2Anothertrue
3Some inactivefalse
4Quattrotrue
5Obsoletefalse

This is stored in a table called "cf_demo_values"

Code Block
create table cf_demo_values (id INTEGER NOT NULL, name CHARACTER(50) NOT NULL, is_active boolean);