Skip to content

Instantly share code, notes, and snippets.

@gavinr
Created April 7, 2015 03:11
Show Gist options
  • Save gavinr/72f63bdfbc3a9d76291f to your computer and use it in GitHub Desktop.
Save gavinr/72f63bdfbc3a9d76291f to your computer and use it in GitHub Desktop.
wiring up the keyUp event on a textBox to call a function
on(this.filterTextBox, "keyUp", lang.hitch(this, function(name, oldValue, newValue) {
var searchValue = this.filterTextBox.get("value");
this.filterGrid(this.grid, this.memory, searchValue);
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment