Class Hidden

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

    public class Hidden
    extends TagSupport
    This tag defines a hidden input element that should be included in the form. It should be placed inside the <tbl:table> tag.

    Syntax:

       <tbl:hidden
          name=...
          value=...
          skip=true|false
       >
    
    Tag attributes
    Attribute Default value Required Description
    name - yes The name of the hidden element.
    value (empty string) no The value of the hidden element.
    skip false no If hidden element should be included in the form or not.

    The <tbl:hidden> doesn't have any subtags.

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

      • table

        private Table table
        The parent <tbl:table> tag.
      • name

        private String name
        The name of the element.
      • value

        private String value
        The value of the element.
      • skip

        private boolean skip
        If the hidden element should be included or not.
    • Constructor Detail

      • Hidden

        public Hidden()