I\'m trying to implement a list filter in a text field in sencha touch. For example, I\'d have a bunch of contacts, and when I typed in the field, it might filter by name. W
For sencha touch 2.0 users:
If your using new mvc structure, you can use this in the controller init
this.control({ '#yourTextFieldId clearicon': { tap: function(){console.log('ClearICON tapped');} } .... )};