template::util::richtext::get_tag (public)

 template::util::richtext::get_tag [ -options options ]

Defined in packages/acs-templating/tcl/richtext-procs.tcl

Return tag name for the markup; normally a "textarea", but some editors might use e.g. a "div". If the function is defined for the editor, call it.

Switches:
-options
(optional)

Partial Call Graph (max 5 caller/called nodes):
%3 template::widget::richtext template::widget::richtext (public) template::util::richtext::get_tag template::util::richtext::get_tag template::widget::richtext->template::util::richtext::get_tag

Testcases:
No testcase defined.
Source code:
    set tag textarea
    if {[dict exists $options editor]
        && [namespace which ::richtext::[
            dict get $options editor]::get_tag] ne ""
    } {
        set tag [::richtext::[dict get $options editor]::get_tag -options $options]
    }
    return $tag
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: