Haxe API Documentation
Back | Index
extern class js.html.FieldSetElement
extends Element
Available in js
DOM fieldset elements expose the HTMLFieldSetElement  ( HTML 4 HTMLFieldSetElement) interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of field-set elements.

Documentation for this class was provided by MDN.
var disabled : Bool

Reflects the

disabled HTML attribute, indicating whether the user can interact with the control.

var elements(default,null) : HTMLCollection
The elements belonging to this field set.
var form(default,null) : FormElement
The containing form element, if this element is in a form. Otherwise, the element the name content attribute points to HTML5. (null in HTML 4.)
var name : String

Reflects the

name HTML attribute, containing the name of the field set, used for submitting the form.

var type(default,null) : String
Must be the string fieldset.
var validationMessage(default,null) : String
A localized message that describes the validation constraints that the element does not satisfy (if any). This is the empty string if the element  is not a candidate for constraint validation (willValidate is false), or it satisfies its constraints.
var validity(default,null) : ValidityState
The validity states that this element is in.
var willValidate(default,null) : Bool
Always false because fieldset objects are never candidates for constraint validation.
function checkValidity() : Bool
function setCustomValidity(error : String) : Void
Back | Index