Class Toolbar

  • All Implemented Interfaces:
    Serializable, DynamicAttributes, IterationTag, JspTag, Tag, DynamicActionAttributes

    public class Toolbar
    extends StylableTag
    This tag creates a toolbar. tag.

    Syntax:

       <tbl:toolbar
          id=...
          clazz=...
          subclass=...
          style=...
          visible=true|false
       >
    
    Tag attributes
    Attribute Default value Required Description
    id - no The ID of the toolbar. The value of this attribute goes directly into the standard HTML id attribute. This means that if you need a reference to the table object in your own JavaScript code, you may for example use the following code:
    toolbar = document.getElementById('<id>');
    
    clazz toolbar no The value if this attribute goes directly into the standard HTML class attribute. This allows you to apply different styles to different tables.
    style - no The value if this attribute goes directly into the standard HTML style attribute. This allows you to apply different styles to different tables.
    visible true no If the button should be visible or not.

    The <tbl:toolbar> may contain the following subtags:

    Version:
    2.0
    Author:
    Nicklas
    See Also:
    Serialized Form
    • Field Detail

      • visible

        private boolean visible
        If the toolbar should be visible or not.
      • hasImages

        private boolean hasImages
        If buttons should display images.
      • hasText

        private boolean hasText
        If buttons should display text.
    • Constructor Detail

      • Toolbar

        public Toolbar()