Class Menuseparator

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

    public class Menuseparator
    extends StylableTag
    This tag defines a horizontal separator line inside a drop-down menu. This tag can only be used inside a Menu tag.

    Syntax:

       <m:menuseparator
          id=...
          clazz=...
          subclass=...
          style=...
          visible=...
       >
    
    Tag attributes
    Attribute Default value Required Description
    id menuseparator1, menuseparator2, and so on... no The ID of the menuseparator. The value of this attribute goes directly into the standard HTML id attribute. This means that if you need a reference to the menuseparator object in your own JavaScript code, you may for example use the following code:

    menuseparator = document.getElementById('<id>');

    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 Use false to hide this separator entirely.
    Version:
    2.0
    Author:
    Nicklas
    See Also:
    Serialized Form
    • Field Detail

      • menu

        private Menu menu
      • style

        private String style
        Optional style attribute
      • visible

        private boolean visible
        If the separator is visible.
    • Constructor Detail

      • Menuseparator

        public Menuseparator()