I'm currently trying to add a trigger to a form with multiple trigger on single field.
In my case when select intetnal it triggers contenttype and than it shows video or article based on selection. And after doing all things when I will select external from link it will not trigger to close contenttype
I am trying but not working :
link:
label: 'Internal Or External Link'
options:
internal: Internal
external: External
span: full
default: internal
required: 1
type: dropdown
comment: 'Select Link Type'
external_link:
label: 'External Link'
span: full
trigger:
action: show
field: link
condition: 'value[external]'
type: text
comment: 'Enter External Link'
content_type:
label: 'Content Type'
options:
video: Video
article: Article
span: full
trigger:
action: show
field: link
condition: 'value[internal]'
type: dropdown
comment: 'Select Content Type'
videolink:
label: 'Video Link'
span: full
trigger:
action: show
field: content_type
condition: 'value[video]'
type: text
comment: 'Enter Video Link'
article_content:
label: 'Article Content'
size: large
span: full
trigger:
action: show
field: content_type
condition: 'value[article]'
type: richeditor
comment: 'Add Article Content'