java.lang.Object
javax.servlet.jsp.tagext.TagSupport
net.sf.basedb.clients.web.taglib.table.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 Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
      Constant Field Values
    • 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 Details

    • Hidden

      public Hidden()
  • Method Details

    • setName

      public void setName​(String name)
    • getName

      public String getName()
    • setValue

      public void setValue​(String value)
    • getValue

      public String getValue()
    • setSkip

      public void setSkip​(boolean skip)
    • isSkip

      public boolean isSkip()
    • doStartTag

      public int doStartTag() throws JspException
      Specified by:
      doStartTag in interface Tag
      Overrides:
      doStartTag in class TagSupport
      Throws:
      JspException