enyo.kind({ name: 'ex.App', components: [ {name: 'input', kind: 'Input', oninput: 'handleInput'}, {name: 'content'} ], handleInput: function (sender, event) { this.startJob('wait a bit', 'processInput', 500); }, processInput: function () { this.$.content.set('content', this.$.input.value); } });
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
http://jsfiddle.net/b4r2eyqy/
Kind regards,
Sandbox