-
|
The examples contain lines: SELECT 'password' AS name, 'password' AS type, '^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$' AS pattern, 'Password must be at least 8 characters long and contain at least one letter and one number.' AS description;
SELECT 'terms' AS name, 'I accept the terms and conditions' AS label, TRUE AS required, FALSE AS value, 'checkbox' AS type;
select 'Location_Name' as name, 'Name of the store' as label;
select 'Location' as name,
'select' as type, -- Creates a dropdown menu
'[
{"label": "Houston", "value": [29.7604, -95.3698]},
{"label": "Phoenix", "value": [33.4484, -112.0740]}
]' as options;
that describe different types of controls. However, I couldn't find a clear description of their syntax in the documentation, similar to the component descriptions with examples and property listings. Where can I find a list of them with descriptions of their properties? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
I updated the document for the
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
I'm more of a SQL and RDBMS person, but I'm not very familiar with web development. Your approach gave me a chance to get a handle on it, for which I'm especially grateful. I think it's a very promising approach. |
Beta Was this translation helpful? Give feedback.

Here is a detailed example of valid input types: