-
8 Dec 2011 11:17 AM #1
Answered: TextField(Area) events not working?
Answered: TextField(Area) events not working?
I have a form with disabled items (textfields and textareafields) and when I tap on an item it should be enabled (=editable).
I tried using 'tap' and 'click' in my controller, but they are not firing. However, 'focus' and 'blur' are firing, but the object handed over by the event is a HTMLTextArea and not a Sencha Touch TextAreaField. 'Change' is firing and the object handed over by the event is, as expected, a Sencha Touch TextAreaField.
What's going on?
also, the order of the arguments are not as described in the docs.Code:this.control({ '#create-todo-form #description' : { tap: function(a,b,c,d,e,f) { console.log(a); console.log(b); console.log(c); console.log(d); console.log(e); console.log(f); } }, });
-
Best Answer Posted by rdougan
Erm, you should listen to the field input element tap event.
Code:var input = field.getComponent(); input.element.on({ tap: function() { console.log('tap!'); } });
-
8 Dec 2011 2:36 PM #2
You should listen to the 'focus', 'blur' and 'change' events. There however are some issues with the signatures of these events in PR2, so you will have to work around them until the next release.
Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.
-
9 Dec 2011 2:33 AM #3
'focus' does not fire on disabled textfields
'focus' does not fire on disabled textfields
thank you for your help!
i am now listening to 'focus','change' and 'blur' events, but they are never fired on disabled Text(Area)Fields.
Is there no event that gets fired when the user clicks on a disabled Text(Area)Field?
-
9 Dec 2011 11:18 AM #4
Erm, you should listen to the field input element tap event.
Code:var input = field.getComponent(); input.element.on({ tap: function() { console.log('tap!'); } });Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.


Reply With Quote