Skip to content

Instantly share code, notes, and snippets.

@wittemann
Created July 20, 2010 11:10
Show Gist options
  • Save wittemann/482823 to your computer and use it in GitHub Desktop.
Save wittemann/482823 to your computer and use it in GitHub Desktop.
TextField [qx]
var tx = new qx.ui.form.TextField("affe");
this.getRoot().add(tx);
tx.setLiveUpdate(true);
tx.addListener("changeValue", function(e) {
console.log(e.getData());
}, this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment