Package com.groiss.gui.component
Class HiddenField
java.lang.Object
com.groiss.gui.AbstractComponent
com.groiss.gui.component.Textfield
com.groiss.gui.component.HiddenField
- All Implemented Interfaces:
Component
,Serializable
,Cloneable
A HTML hidden field element. <input type=hidden ..
- See Also:
-
Field Summary
Fields inherited from class com.groiss.gui.AbstractComponent
ACTIVE, browserMode, DEFAULT, ID, IE, INVISIBLE, isSensitive, label, NS, ON_BLUR, ON_CHANGE, ON_CLICK, ON_DBLCLICK, ON_FOCUS, ON_KEY_DOWN, ON_KEY_PRESS, ON_KEY_UP, ON_LOAD, ON_MOUSE_DOWN, ON_MOUSE_MOVE, ON_MOUSE_OUT, ON_MOUSE_UP, ON_RESET, ON_SELECT, ON_SUBMIT, ON_UNLOAD, parent, parentElem, READONLY, root, viewMode
Fields inherited from interface com.groiss.gui.Component
LABELLEDBY
-
Constructor Summary
ConstructorDescriptionConstructs a new empty hiddenField componentHiddenField
(String name, String value) Constructor with name and value. -
Method Summary
Methods inherited from class com.groiss.gui.component.Textfield
getContent, getMaxlength, getSize, getValue, setContent, setMaxlength, setSize, setValue
Methods inherited from class com.groiss.gui.AbstractComponent
addClass, clone, create, getAttribute, getBrowserMode, getId, getLabel, getName, getParent, getParentElement, getRoot, getRootName, getStyle, getViewMode, init, init, init, removeAttribute, removeClass, setActionListener, setAttribute, setBrowserMode, setClass, setEncoding, setExpandEmptyElements, setId, setIndenting, setLabel, setName, setNewLines, setParent, setParentElement, setRootName, setStyle, setViewMode, show, show, toggleClass, toString
-
Constructor Details
-
HiddenField
public HiddenField()Constructs a new empty hiddenField component -
HiddenField
Constructor with name and value.- Parameters:
name
- the name and id of the field.value
- the value of the field
-