We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69c829 commit d197aefCopy full SHA for d197aef
src/main/java/com/osiris/desku/ui/input/TextField.java
@@ -40,6 +40,14 @@ public String getValue(){
40
return this.input.element.attr("value");
41
}
42
43
+ /**
44
+ * Triggers {@link #_onValueChange} event.
45
+ */
46
+ public TextField setValue(String s){
47
+ this.input.putAttribute("value", s);
48
+ return this;
49
+ }
50
+
51
/**
52
* Adds a listener that gets executed when this component <br>
53
* was clicked by the user (a JavaScript click event was thrown). <br>
0 commit comments