EKM Tag: [ekm:dialog_trigger]
When combined with the [ekm:dialog] tag, this tag can be used to output a stylable dialog.
- Tag Information
[ekm:dialog_trigger]
dialog_id='some_unique_id';
type='auto_trigger';
action='show';
[/ekm:dialog_trigger]
[ekm:dialog_trigger]
dialog_id='some_unique_id';
type='button';
action='show';
output_start='Before the button';
output_item='Button Text';
output_end='After the button';
[/ekm:dialog_trigger]
output_start='';
Specify any text or html to output before the dialog trigger.
type='[type]';
Specify any text or html to output before the dialog trigger.
The type attribute can be any of the following...
auto_trigger - Open the dialog on page load
link - Output an <a> tag that will open the dialog on click
button - Output a <button> tag
function_name - Output a javascript function definition with a name like [action]_[dialog_id]_dialog
action='[action]';
Specify which action should be triggered.
The action attribute can be any of the following...
show - When this trigger is fired, the linked dialog will be shown
hide - When this trigger is fired, the linked dialog will be hidden
output_start='';
Specify any text or html to output before the dialog trigger.
output_item='';
Specify the text to show for link and button type triggers.
output_end='';
Specify any text or html to output after the page type.