Class DomElement
The DOM element proxy object is used as an intermediate layer to render the creation of new DOM elements or updates to existing DOM elements. A DOM element can be serialized to HTML or to JavaScript manipulations, and therefore is the main abstraction layer to avoid hard-coding JavaScript-based rendering within the library while still allowing fine-grained Ajax updates or large-scale HTML changes.
This is an internal API, subject to change.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA data-structure for an aggregated event handler.static enumEnumeration for the access mode (creation or update)static enumEnumeration for an update rendering phase.static classStructure for keeping track of timers attached to this element. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddChild(DomElement child) Adds a child.voidThis adds more JavaScript to an event handler.voidaddPropertyWord(Property property, String value) Adds a 'word' to a property.voidaddPropertyWords(Property property, String value) Adds multiple 'words' to a property.addToParent(StringBuilder out, String parentVar, int pos, WApplication app) Adds an element to a parent, using suitable methods.final voidasHTML(EscapeOStream out, EscapeOStream javaScript, List<DomElement.TimeoutEvent> timeouts) Renders the element as HTML.voidasHTML(EscapeOStream out, EscapeOStream javaScript, List<DomElement.TimeoutEvent> timeouts, boolean openingTagOnly) Renders the element as HTML.asJavaScript(EscapeOStream out, DomElement.Priority priority) Renders the element as JavaScript, by phase.voidRenders the element as JavaScript.final voidcallJavaScript(String jsCode) Calls JavaScript (related to the DOM element).voidcallJavaScript(String jsCode, boolean evenWhenDeleted) Calls JavaScript (related to the DOM element).voidcallMethod(String method) Calls a JavaScript method on the DOM element.voidClears all properties.voidcreateElement(StringBuilder out, WApplication app, String domInsertJS) Renders the element as JavaScript, and inserts it in the DOM.static DomElementcreateNew(DomElementType type) Creates a reference to a new element.static voidcreateTimeoutJs(StringBuilder out, List<DomElement.TimeoutEvent> timeouts, WApplication app) Creates the JavaScript statements for timer rendering.static StringcssJavaScriptName(Property property) Returns the name for a JavaScript DOM style property, as a string.static StringReturns the name for a CSS property, as a string.voiddeclare(EscapeOStream out) Declares the element.static voidfastHtmlAttributeValue(EscapeOStream outRaw, EscapeOStream outEscaped, String s) Utility for rapid rendering of HTML attribute values.static voidfastJsStringLiteral(EscapeOStream outRaw, EscapeOStream outEscaped, String s) Utility for rapid rendering of JavaScript strings.getAttribute(String attribute) Returns an attribute value set.Allocates a JavaScript variable.Renders properties and attributes into CSS.static DomElementgetForUpdate(WObject object, DomElementType type) Creates a reference to an existing element, deriving the ID from an object.static DomElementgetForUpdate(String id, DomElementType type) Creates a reference to an existing element, using its ID.getId()Returns the id.Returns all custom JavaScript collected in this element.getMode()Returns the mode.Returns all properties currently set.getProperty(Property property) Returns a property value set.getType()Returns the element type.getVar()Returns the JavaScript variable name.static voidhtmlAttributeValue(StringBuilder out, String s) Utility that renders a string as HTML attribute.voidinsertBefore(DomElement sibling) Inserts the element in the DOM as a new sibling.voidinsertChildAt(DomElement child, int pos) Inserts a child.booleanReturns the default display property for this element.static booleanReturns whether a paritcular element is by default inline.static booleanisSelfClosingTag(DomElementType element) Returns whether a tag is self-closing in HTML.static booleanisSelfClosingTag(String tag) Returns whether a tag is self-closing in HTML.static voidjsStringLiteral(EscapeOStream out, String s, char delimiter) Utility that renders a string as JavaScript literal.static voidjsStringLiteral(StringBuilder out, String s, char delimiter) Utility that renders a string as JavaScript literal.static DomElementTypeparseTagName(String tag) Parses a tag name to a DOMElement type.final voidRemoves all children.voidremoveAllChildren(int firstChild) Removes all children.voidremoveAttribute(String attribute) Removes an attribute.voidRemoves the element.voidremoveProperty(Property property) Removes a property.voidreplaceWith(DomElement newElement) Replaces the element by another element.voidSaves an existing child.voidsetAttribute(String attribute, String value) Sets an attribute value.voidsetDomElementTagName(String name) set dom element custom tag namevoidSets an event handler.final voidSets an event handler.voidSets an event handler.voidsetEvent(String eventName, List<DomElement.EventAction> actions) Sets an aggregated event handler.voidsetEventSignal(String eventName, AbstractEventSignal signal) Sets an event handler based on a signal's connections.voidsetGlobalUnfocused(boolean b) voidSets the DOM element id.voidSets a DOM element name.voidsetProperties(SortedMap<Property, String> properties) Sets a whole map of properties.voidsetProperty(Property property, String value) Sets a property.voidsetTimeout(int msec, boolean jsRepeat) Configures the DOM element as a source for timed events.voidsetTimeout(int delay, int interval) Configures the DOM element as a source for timed events, with given initial delay and interval, always repeating.voidsetType(DomElementType type) Sets the element type.voidsetWasEmpty(boolean how) Sets whether the element was initially empty.static StringtagName(DomElementType type) Returns the tag name for a DOMElement type.voidunstubWith(DomElement newElement, boolean hideWithDisplay) Unstubs an element by another element.voidunwrap()Unwraps an element to progress to Ajax support.static DomElementupdateGiven(String var, DomElementType type) Creates a reference to an existing element, using an expression to access the element.voidSomething to do with broken IE Mobile 5 browsers...static StringurlEncodeS(String url) Low-level URL encoding function.static StringurlEncodeS(String url, String allowed) Low-level URL encoding function.
-
Constructor Details
-
DomElement
Constructor.This constructs a
DomElementreference, with a given mode and element type. Note that even when updating an existing element, the type is taken into account for information on what kind of operations are allowed (workarounds for IE deficiencies for examples) or to infer some basic CSS defaults for it (whether it is inline or a block element).Typically, elements are created using one of the 'named' constructors:
createNew(),getForUpdate()orupdateGiven().
-
-
Method Details
-
setDomElementTagName
set dom element custom tag name -
urlEncodeS
Low-level URL encoding function. -
urlEncodeS
Low-level URL encoding function.This variant allows the exclusion of certain characters from URL encoding.
-
getMode
Returns the mode. -
setType
Sets the element type. -
getType
Returns the element type. -
createNew
Creates a reference to a new element. -
getForUpdate
Creates a reference to an existing element, using its ID. -
getForUpdate
Creates a reference to an existing element, deriving the ID from an object.This uses object.
getId()as the id. -
updateGiven
Creates a reference to an existing element, using an expression to access the element. -
getVar
Returns the JavaScript variable name.This variable name is only defined when the element is being rendered using JavaScript, after
declare()has been called. -
setWasEmpty
public void setWasEmpty(boolean how) Sets whether the element was initially empty.Knowing that an element was empty allows optimization of
addChild() -
addChild
Adds a child.Ownership of the child is transferred to this element, and the child should not be manipulated after the call, since it could be that it gets directly converted into HTML and deleted.
-
insertChildAt
Inserts a child.Ownership of the child is transferred to this element, and the child should not be manipulated after the call.
-
saveChild
Saves an existing child.This detaches the child from the parent, allowing the manipulation of the innerHTML without deleting the child. Stubs in the the new HTML that reference the same id will be replaced with the saved child.
-
setAttribute
Sets an attribute value. -
getAttribute
Returns an attribute value set.- See Also:
-
removeAttribute
Removes an attribute. -
setProperty
Sets a property. -
addPropertyWord
Adds a 'word' to a property.This adds a word (delimited by a space) to an existing property value.
- See Also:
-
addPropertyWords
Adds multiple 'words' to a property.This adds multiple words (separated by spaces) to an existing property value.
- See Also:
-
getProperty
Returns a property value set.- See Also:
-
removeProperty
Removes a property. -
setProperties
Sets a whole map of properties. -
getProperties
Returns all properties currently set. -
clearProperties
public void clearProperties()Clears all properties. -
setEventSignal
Sets an event handler based on a signal's connections. -
setEvent
Sets an event handler.This sets an event handler by a combination of client-side JavaScript code and a server-side signal to emit.
-
setEvent
Sets an event handler. -
setEvent
Sets an event handler.This sets a JavaScript event handler.
-
addEvent
This adds more JavaScript to an event handler. -
setEvent
Sets an aggregated event handler. -
setId
Sets the DOM element id. -
setName
Sets a DOM element name. -
setTimeout
public void setTimeout(int msec, boolean jsRepeat) Configures the DOM element as a source for timed events. -
setTimeout
public void setTimeout(int delay, int interval) Configures the DOM element as a source for timed events, with given initial delay and interval, always repeating. -
callMethod
Calls a JavaScript method on the DOM element. -
callJavaScript
Calls JavaScript (related to the DOM element). -
callJavaScript
Calls JavaScript (related to the DOM element). -
getId
Returns the id. -
removeAllChildren
public void removeAllChildren(int firstChild) Removes all children.If firstChild != 0, then only children starting from firstChild are removed.
-
removeAllChildren
public final void removeAllChildren()Removes all children.Calls
removeAllChildren(0) -
removeFromParent
public void removeFromParent()Removes the element. -
replaceWith
Replaces the element by another element. -
unstubWith
Unstubs an element by another element.Stubs are used to render hidden elements initially and update them in the background. This is almost the same as
replaceWith()except that some style properties are copied over (most importantly its visibility). -
insertBefore
Inserts the element in the DOM as a new sibling. -
unwrap
public void unwrap()Unwraps an element to progress to Ajax support.In plain HTML mode, some elements are rendered wrapped in or as another element, to provide more interactivity in the absense of JavaScript.
-
asJavaScript
Renders the element as JavaScript. -
asJavaScript
Renders the element as JavaScript, by phase.To avoid temporarily having dupliate IDs as elements move around in the page, rendering is ordered in a number of phases : first deleting existing elements, then creating new elements, and finally updates to existing elements.
-
asHTML
public void asHTML(EscapeOStream out, EscapeOStream javaScript, List<DomElement.TimeoutEvent> timeouts, boolean openingTagOnly) Renders the element as HTML.Anything that cannot be rendered as HTML is rendered as javaScript as a by-product.
-
asHTML
public final void asHTML(EscapeOStream out, EscapeOStream javaScript, List<DomElement.TimeoutEvent> timeouts) Renders the element as HTML. -
createTimeoutJs
public static void createTimeoutJs(StringBuilder out, List<DomElement.TimeoutEvent> timeouts, WApplication app) Creates the JavaScript statements for timer rendering. -
isDefaultInline
public boolean isDefaultInline()Returns the default display property for this element.This returns whether the element is by default an inline or block element.
-
declare
Declares the element.Only after the element has been declared,
getVar()returns a useful JavaScript reference. -
getCssStyle
Renders properties and attributes into CSS. -
fastJsStringLiteral
Utility for rapid rendering of JavaScript strings.It uses pre-computed mixing rules for escaping of the string.
-
jsStringLiteral
Utility that renders a string as JavaScript literal. -
jsStringLiteral
Utility that renders a string as JavaScript literal. -
fastHtmlAttributeValue
Utility for rapid rendering of HTML attribute values.It uses pre-computed mixing rules for escaping of the attribute value.
-
htmlAttributeValue
Utility that renders a string as HTML attribute. -
isSelfClosingTag
Returns whether a tag is self-closing in HTML. -
isSelfClosingTag
Returns whether a tag is self-closing in HTML. -
parseTagName
Parses a tag name to a DOMElement type. -
tagName
Returns the tag name for a DOMElement type. -
cssName
Returns the name for a CSS property, as a string. -
cssJavaScriptName
Returns the name for a JavaScript DOM style property, as a string. -
isDefaultInline
Returns whether a paritcular element is by default inline. -
getJavaScript
Returns all custom JavaScript collected in this element. -
updateInnerHtmlOnly
public void updateInnerHtmlOnly()Something to do with broken IE Mobile 5 browsers... -
addToParent
Adds an element to a parent, using suitable methods.Depending on the type, different DOM methods are needed. In particular for table cells, some browsers require dedicated API instead of generic insertAt() or appendChild() functions.
-
createElement
Renders the element as JavaScript, and inserts it in the DOM. -
getCreateVar
Allocates a JavaScript variable. -
setGlobalUnfocused
public void setGlobalUnfocused(boolean b)
-