Class Fieldset

    • Constructor Detail

      • Fieldset

        public Fieldset()
    • Method Detail

      • isDisabled

        public boolean isDisabled()
        Returns the disabled of this fieldset tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Since:
        8.0.3
      • setDisabled

        public void setDisabled​(boolean disabled)
                         throws WrongValueException
        Sets the disabled of this fieldset tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Throws:
        WrongValueException
        Since:
        8.0.3
      • getName

        public java.lang.String getName()
        Returns the name of this fieldset tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Since:
        8.0.3
      • setName

        public void setName​(java.lang.String name)
                     throws WrongValueException
        Sets the name of this fieldset tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Throws:
        WrongValueException
        Since:
        8.0.3
      • getForm

        public java.lang.String getForm()
        Returns the form of this tag.
        Since:
        10.0.0
      • setForm

        public void setForm​(java.lang.String form)
                     throws WrongValueException
        Sets the form of this tag.

        This attribute takes the value of the id attribute of a <form> element you want the <fieldset> to be part of, even if it is not inside the form.

        Throws:
        WrongValueException
        Since:
        10.0.0