Element Properties & Attributes
- About Attributes
- About Properties
- Difference between Using Attributes and Properties
- Using the
textContentProperty - Synchronizing Properties to the Server
The Element API contains methods to update and query parts of an element. You can use the Element API to change property and attribute values for server-side elements.
About Attributes
Attributes are used mainly for the initial configuration of elements.
Attribute values are always stored as strings.
nameField elementSource code
Java
Element nameField = ElementFactory.createInput();
nameField.setAttribute("id", "nameField");
nameField.setAttribute("placeholder", "John Doe");
nameField.setAttribute("autofocus", "");Source code
HTML
<input id="nameField" placeholder="John Doe" autofocus>You can also retrieve and manipulate attributes after they have been set.
nameField elementSource code
Java
// "John Doe"
String placeholder = nameField.getAttribute("placeholder");
// true
nameField.hasAttribute("autofocus");
nameField.removeAttribute("autofocus");
// ["id", "placeholder"]
nameField.getAttributeNames().toArray();About Properties
Properties are used mainly to dynamically change the settings of an element after it has been initialized.
Any JavaScript value can be used as a property value in the browser.
You can use different variations of the Element.setProperty() method to set a property value as a String, boolean, double or JsonValue.
doubleSource code
Java
Element element = ElementFactory.createInput();
element.setProperty("value", 42.2);Similarly, you can use different variations of the Element.getProperty() method to retrieve the value of a property as a String, boolean, double or JsonValue.
If you retrieve the value of a property as a different type from that used to set it, JavaScript type coercion rules are used to convert the value.
For example, a property set as a non-empty String results as true if fetched as a boolean.
Source code
Java
// Assuming the "value" property is 42.2:
// true, since any non-empty string is
// true in JavaScript
boolean helloBoolean = element.getProperty("value", true);
// 42, string is parsed to a JS number and
// truncated to an int
int helloInt = element.getProperty("value", 0);Difference between Using Attributes and Properties
Be cautious when using attributes and properties:
-
It’s often possible to use either an attribute or property with the same name for the same effect, and both work fine.
-
However, in certain cases:
-
only one or the other works, or
-
the attribute is considered only when the element is initialized, and the property is effective after initialization.
-
You should always check the specific documentation for the element you are using to find out whether a feature should be configured using a property or an attribute.
Using the textContent Property
You can set an element’s textContent property using the Element.setText() method.
This removes all the children of the element and replaces them with a single text node with the given value.
The ElementFactory interface provides helpers that you can use to create an element with a given text content.
createSpan() and createDiv() helper methods with the setText() methodSource code
Java
// <div>Hello world</div>
Element element = ElementFactory.createDiv("Hello world");
// <div>Hello world<span></span></div>
element.appendChild(ElementFactory.createSpan());
// <div>Replacement text</div>
element.setText("Replacement text");To retrieve the text of an element, you can use the:
-
Element.getText()method to return the text in the element itself. Text in child elements is ignored. -
Element.getTextRecursively()method to return the text of the entire element tree, by recursively concatenating the text from all child elements.
getText() and getTextRecursively() methodsSource code
Java
element.setText("Welcome back ");
Element name = ElementFactory.createStrong("Rudolph Reindeer");
// <div>Welcome back <strong>Rudolph
// Reindeer</strong></div>
element.appendChild(name);
// returns "Welcome back Rudolph Reindeer"
element.getTextRecursively();
// returns "Welcome back "
element.getText();Synchronizing Properties to the Server
By default, values updated in the browser aren’t sent to the server. To synchronize a property, use the Element.addPropertyChangeListener() method. The method takes three parameters:
-
the name of the property to synchronize;
-
the name of the DOM event that triggers the synchronization; and
-
a listener that is invoked when the property value changes.
After the property has been synchronized to the server, you can retrieve its value using the getProperty() method. If you don’t need to react to the property change directly when it occurs, you can use a NO-OP listener.
value property of a text input element whenever the change event occursSource code
Java
textInput.addPropertyChangeListener("value", "change", e -> {});|
Note
|
As an alternative, you can use the addEventData() method to transfer the value from the input to the server.
See Listening to Element Events for more information.
|
This example demonstrates how to use the Element API to retrieve user input. The example adds a text input field that allows the user to enter their name.
-
Create a text input element:
Source code
Java
Element textInput = ElementFactory.createInput(); textInput.setAttribute("placeholder", "Enter your name"); -
Transfer the value to the server by asking the client to update the server-side input element every time the value changes in the browser:
Source code
Java
textInput.addPropertyChangeListener("value", "change", e -> {}); -
Retrieve the synchronized properties using
Element.getProperty():Source code
Java
button.addEventListener("click", e -> { String responseText = "Hello " + textInput.getProperty("value"); 1 Element response = ElementFactory.createDiv(responseText); getElement().appendChild(response); });-
The
valueproperty isnullif the property wasn’t previously set and the user hasn’t typed text into the field.
-
867075C4-D3EB-4AE2-B369-51E678673A7A