How-To Guide: Configuring the 'Field Selection of an SQL' Field Type in Data Forms
This guide will walk you through configuring the 'Field Selection of an SQL' field type in Data Forms. This versatile field dynamically generates options based on SQL queries and supports user session linking for personalized results.
Overview
The 'Field Selection of an SQL' field type enables dynamic, data-driven field options. It is ideal for scenarios where the available options depend on data from your database or the user's context (e.g., session). It includes features like:
- Dynamic labels and values using SQL.
- User session-based personalization.
- Advanced selector plugins for improved usability.
Steps to Configure the Field
Step 1: Configure Field Details
- Field Name: Choose a descriptive name (e.g.,
user_name
). - Explanation of the Empty Field:
- Add a user-friendly explanation (e.g., "This field dynamically fetches user-specific data. If no options appear, check user permissions or SQL query conditions.").
- Field Label: Set a clear label for the field (e.g., "Name").
- Alignment and Field Width:
- Alignment: Choose left, center, or right alignment.
- Field Width: Use 100% width for full-screen layouts.
- Required Field: Check this option to make the field mandatory.

Step 2: SQL Query Configuration
The SQL query determines the data displayed in the field. Here’s an example:
SELECT
CONCAT(t1.company_name, ' | ', t1.contact_name) AS label,
t1.company_id AS value
FROM companies t1
LEFT JOIN employees t2 ON t2.id = t1.account_manager_id
WHERE t2.email = '#sess_username#';
Key Elements in the Query
- Dynamic Labels:
- Use
CONCAT
or similar SQL functions to create user-friendly labels. - Example: Display "Company Name | Contact Name".
- Use
- Dynamic User Context:
- Use placeholders like
#sess_username#
to personalize results based on the logged-in user.
- Use placeholders like
- Search Capability:
- Add
#SEARCH#
to enable in-field search functionality:WHERE column_name LIKE '%#SEARCH#%'
- Add
- Limit Results:
- Optimize performance for large datasets using
LIMIT
:LIMIT 100
- Optimize performance for large datasets using
Step 3: Grouping and Advanced SQL Features
-
Grouping Options:
- Use the
optgrp
field to group related options:
SELECT 'Technology' AS optgrp, id AS value, name AS label FROM departments GROUP BY optgrp;
SQL Statement Description optgrp Represents the group under which related options are categorized. It acts as the header or organizer for grouping items together. value Represents the actual data that will be stored in the database when the user makes a selection. This is the value sent to your table. label Represents the user-friendly name or description of the option that will be displayed in the interface. This helps the user understand what they are selecting.
- Use the
-
Global Variables:
- Use
dk_global_vars
for additional filtering in SQL:WHERE column_name = '#dk_var_[name]#'
- Use
Step 4: Choose a Selector Plugin
The Selector Plugin determines how the options are displayed. Options include:
Plugin | Use Case | Features |
---|---|---|
Selectize | Small datasets (~50 rows). | Autocomplete, lightweight, instant search. |
Modal Selector | Large datasets (>50 rows). | Scrollable popup for better navigation. |
Normal Select Tag | Offline forms or basic dropdown needs. | Simple, compatible with offline usage. |
To set the plugin:
-
In the Selector Plugin dropdown, select one of the following:
- Selectize (For small data sets ~50 rows)
- Modal Selector
- Normal Select Tag (For Offline Forms)
Step 5: Save and Test
- Once all configurations are complete:
- Click EDIT FIELD or SAVE.
- Test the form to ensure:
- The SQL query executes correctly.
- Data displays as expected.
- UI behavior matches the selected plugin.
Troubleshooting
Issue | Solution |
---|---|
No data returned | Verify SQL query syntax and database references. |
Incorrect labels or values | Check that label and value fields are properly defined. |
Slow performance | Add LIMIT to your query or simplify SQL logic. |
Plugin behavior mismatch | Ensure the correct Selector Plugin is selected for your use case. |
Practical Example
Example: Company Selection
SQL Query:
SELECT
CONCAT(company_name, ' | ', manager_name) AS label,
company_id AS value
FROM companies
WHERE manager_email = '#sess_username#';
Expected Behavior:
- The field will display a dropdown of company names managed by the current user.
- The dropdown options will show as "Company Name | Manager Name".
Selector Plugin:
- Use Selectize for small datasets or Modal Selector for larger datasets.
Key Best Practices
- Test Queries Thoroughly:
- Validate your SQL query to ensure correctness and performance.
- Use Intuitive Labels:
- Ensure field labels and dropdown options are user-friendly.
- Optimize for Performance:
- Use
LIMIT
, efficient joins, and indexing to speed up queries.
- Use
- Adapt Plugins to Data Size:
- Choose the plugin best suited for your dataset's size and complexity.
Summary
The 'Field Selection of an SQL' field type is a powerful feature for creating dynamic and personalized forms. By integrating SQL and selector plugins, you can enhance user experience and improve data interactivity.
Updated 15 days ago