đFront End Create Forms
WebApp - Front End Submit Forms - Create
When you make a new WebApp, a front-end form file is automatically generated within your WebApp, in a folder called form
. It automatically contains all fields from your WebApp. You can view this folder using Code Editor, it is next to the detail
and list
folders for your WebApp.
Syntax
Output your WebApp form on a page:
Toolbox has support for WebApp input forms, and the following options will be given in the modal, or you can set them yourself:
enabled
- default is false - Boolean - Determines if items are auto-enabled or notexpiry_date
- default isnever expires
- Timestamp - When the new item will expirerelease_date
- default isas soon as the form is submitted
- Timestamp - When the new item will be releasedupload_dir
- String - default isdocuments/form_uploads/webapp_1/
Where uploaded files will be stored. Must follow this format - 'folder/optional_folder/'
Standard Fields
Some fields are required for the form to be able to set up the WebApp items correctly. These fields are for 'enabled', 'expiry_date', 'release_date', 'upload_dir', and 'slug'. They stay the same each form, and don't have a WebApp specific ID attached to them.
All forms should be wrapped in a Liquid form tag: `
` All forms need a submission button:`Submit`
Category Field (optional)
Example 1
This example can be used for a WebApp Submit form that is displayed within a the layout of another WebApp or Module.
this.category_array[0]
- finds the first category the current item is categorised to and can be changed to be a full array, or specific category ID.
Example 2
This example can be used on pages other than WebApp and Module layouts.
123456
- replace with the ID of a category of your choice.
Location Field (optional)
You can submit a Location value for a WebApp item as shown in the following example:
The value should be a stringified JSON object.
Last updated