Merge pull request #421 from jspaetzel/verbose_list_doc

Add list control to example of verbose syntax
This commit is contained in:
Federico Terzi 2020-08-26 18:45:11 +02:00 committed by GitHub
commit e73f013af0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,15 +193,22 @@ If you want to use other Controls in a form specified using the above (verbose)
{% raw %}
```yaml
- trigger: ":form"
replace: "Hey {{form1.name}}, how are you?"
replace: "Hey {{form1.name}}, how are you? Do you like {{form1.fruit}}?"
vars:
- name: "form1"
type: form
params:
layout: "Hey {{name}}, how are you?"
layout: "Name: {{name}} \nFruit: {{fruit}}"
fields:
name:
multiline: true
fruit:
type: list # or `choice`
values:
- Apples
- Bananas
- Oranges
- Peaches
```
{% endraw %}
@ -209,4 +216,4 @@ Note that **the `fields` parameter content is specified as the `form_fields` par
### macOS remarks
For the expansion to take place on macOS, you have to release the submit keys (CTRL+Enter) after submitting the form.
For the expansion to take place on macOS, you have to release the submit keys (CTRL+Enter) after submitting the form.