Package lib.layout
Interface DropdownsTagLib
- All Superinterfaces:
groovy.lang.GroovyObject
,org.kohsuke.stapler.jelly.groovy.TypedTagLibrary
@TagLibraryUri("/lib/layout/dropdowns")
public interface DropdownsTagLib
extends org.kohsuke.stapler.jelly.groovy.TypedTagLibrary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
custom()
Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g.void
custom
(groovy.lang.Closure body) Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g.void
Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g.void
Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g.void
header()
Displays a header to visually group items in a dropdownvoid
header
(groovy.lang.Closure body) Displays a header to visually group items in a dropdownvoid
Displays a header to visually group items in a dropdownvoid
Displays a header to visually group items in a dropdownvoid
item()
void
item
(groovy.lang.Closure body) void
void
void
Displays a horizontal line to visually separate items in a dropdownvoid
separator
(groovy.lang.Closure body) Displays a horizontal line to visually separate items in a dropdownvoid
Displays a horizontal line to visually separate items in a dropdownvoid
Displays a horizontal line to visually separate items in a dropdownvoid
submenu()
Displays the contents as a submenu to a menu itemvoid
submenu
(groovy.lang.Closure body) Displays the contents as a submenu to a menu itemvoid
Displays the contents as a submenu to a menu itemvoid
Displays the contents as a submenu to a menu itemMethods inherited from interface groovy.lang.GroovyObject
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty
-
Method Details
-
custom
Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g. <dd:custom> <img src="jenkins.svg" /> </dd:custom> -
custom
void custom(groovy.lang.Closure body) Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g. <dd:custom> <img src="jenkins.svg" /> </dd:custom> -
custom
Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g. <dd:custom> <img src="jenkins.svg" /> </dd:custom> -
custom
void custom()Allows for custom components inside of dropdowns Pass HTML as the child of this component to render it inside of a dropdown, e.g. <dd:custom> <img src="jenkins.svg" /> </dd:custom> -
separator
Displays a horizontal line to visually separate items in a dropdown -
separator
void separator(groovy.lang.Closure body) Displays a horizontal line to visually separate items in a dropdown -
separator
Displays a horizontal line to visually separate items in a dropdown -
separator
void separator()Displays a horizontal line to visually separate items in a dropdown -
item
-
item
void item(groovy.lang.Closure body) -
item
-
item
void item() -
header
Displays a header to visually group items in a dropdown -
header
void header(groovy.lang.Closure body) Displays a header to visually group items in a dropdown -
header
Displays a header to visually group items in a dropdown -
header
void header()Displays a header to visually group items in a dropdown
-