| F | :ref:`STORE_FORM`: data not saved in database yet. | All native *FormElements*. Recent values from the Browser. |
| B | :ref:`STORE_BEFORE`: Record - the current record loaded in the form before any update. | All columns of the current record from the current table |
| B | :ref:`STORE_BEFORE`: Record - the current record loaded in the form before any update | All columns of the current record from the current table |
| E | *Empty* - allways an empty string, might be helpful if a variable is empty or undefined| Any key |
| P | Parent record. E.g.: on multi & copy forms the current record of the outer query, | All columns of the MultiSQL Statement from the table for the current row |
| F | :ref:`STORE_FORM`: data not saved in database yet. | All native *FormElements*. Recent values from the Browser. |
| C | :ref:`STORE_CLIENT`: POST variable, if not found: GET variable | Parameter sent from the Client (=Browser). |
| P | Parent record. E.g.: on multi & copy forms the current record of the outer query. | All columns of the MultiSQL Statement from the table for the current row |
| _+??? |The content will be wrapped in the tag '???'. Example: SELECT 'example' AS '_+a href="http://example.com"' creates '<a href="http://example.com">example</a>' |
| _+html-tag attributes |The content will be wrapped with '<html-tagattributes>'. Example: SELECT 'example' AS '_+a href="http://example.com"' creates '<ahref="http://example.com">example</a>' |
|_<nonReservedName> |Suppress output. Column names with leading underscore are used to select data from the database and make it available in other parts of the report without generating any output. |
|_<nonReservedName> |Suppress output. Column names with leading underscore are used to select data from the database and make it available in other parts of the report without generating any output. |
@@ -338,6 +338,7 @@ const STORE_SYSTEM = "Y"; // various system values like db connection credential
...
@@ -338,6 +338,7 @@ const STORE_SYSTEM = "Y"; // various system values like db connection credential
constSTORE_EXTRA='X';// Persistent Store: contains arrays! Not Usefull for user. Used by system.
constSTORE_EXTRA='X';// Persistent Store: contains arrays! Not Usefull for user. Used by system.
constSTORE_ADDITIONAL_FORM_ELEMENTS='A';// Internal Store to collect FormElements. Typically for 'hidden' elements of radio and checkbox. Helps render those elements at the end of the whole form rendering.
constSTORE_ADDITIONAL_FORM_ELEMENTS='A';// Internal Store to collect FormElements. Typically for 'hidden' elements of radio and checkbox. Helps render those elements at the end of the whole form rendering.
constSTORE_LDAP='L';
constSTORE_LDAP='L';
constSTORE_USER='U';// Like STORE_EXTRA, but for user use.