5 ui.TextField = ui.AbstractField.extend({
9 _keyup_handler: function() {
10 this.fire("change", this );
12 _main_template: function() {
13 return { tag: "DIV", id: this.id(), cls: "uiField uiTextField", children: [
16 name: this.config.name,
17 placeholder: this.config.placeholder,
18 onkeyup: this._keyup_handler