Content - News Menu - Ressources Menu - Sitemap - Share your code - Code library - Reference
Formidable is part of the TYPO3 Project and is supported by Ameos
Holds the configuration that is global to the application.
| path | data type | req | def | uobj | description |
|---|---|---|---|---|---|
| name | string | X | The name of your XML application | ||
| form/ | |||||
| form/formid | string | X | X | The ID of your Formidable application; corresponds also to the id attribute of the <form> tag. | |
| form/action | string; URL | current url | X | The action type of your Formidable application; corresponds also to the action attribute of the <form> tag. | |
| form/onSubmit | string | current url | Value of the html attribute onSubmit on the HTML <form> tag for this application. | ||
| form/custom | string | current url | Additional string that will be included in the <form> tag for this application. | ||
| form/method | string | POST | Method of form submission : POST or GET. | ||
| form/actionanchor | string | X | Add an anchor on the action of the html form. | ||
| debug | boolean | X | false | If true, appends debug information at the bottom of the application. Should be used only in test environment. | |
| displayLabels | boolean | X | true | True, the renderlets will have their labels automatically displayed close to them. False, they wont. | |
| defaultLLL | string; file-path |
If you give a path to a locallang resource, Formidable will be able to understand incomplete locallang references like LLL:myfield.label by looking in the given default locallang. Example:
| |||
| formWrap | boolean | true | False, to avoid the HTML <form> tag when the form is rendered. It only has sense when all your renderlets are readonly or you are using only a renderlet:LISTER. | ||
| debugSendMail | csv-string; email |
Emails sent via the tx_ameosformidable->sendMail() method will be diverted to the given email addresses, to ease the debugging process. Example:
| |||
| majixSpinner | string; file-path |
Alternative image for the Ajax spinner displayed to the user when waiting for an Ajax request to be processed. Example:
| |||
| codeBehind/ | |||||
| codeBehind/name | string | X |
Name of the codeBehind that is used for call a function. See http://formidable.typo3.ug/features/codebehind-syntax.html | ||
| codeBehind/path | string; file-path | X |
Path of the CodeBehind, followed by the name of the class. Example:
| ||
| libs | csv-string |
Third-party libraries to include to page when application initializes. Possible values are:
| |||
| exportStyles | boolean | true | If true, the <style> tags found in your applications will be automatically exported to external files, and included in HTML head. | ||
| ajaxCharset | string | utf8 | Specify latin1 if ajax requests should be made using iso charset, instead of utf8. | ||
| keepInSession | boolean | true | If false, Formidable will not hibernate in session, reducing memory usage on the server, but also deactivating the ajax service. | ||
| accessibility/ | |||||
| accessibility/useJs | boolean | true | If false, Formidable will not include the js-layer in the page. | ||
| onInit | runneable | X |
If given, the runneable will be executed when Formidable initializes your application. | ||
| onCheckPoint/ | |||||
| onCheckPoint/when | string | X | end |
This property tells Formidable when to execute the given runneable. Example:
The list of available checkpoints, given in order of execution, is:
| |
Provided by Ameos