-
21 Nov 2012 9:13 AM #1
onchange event does not fire with input type=file
onchange event does not fire with input type=file
Try any
handler is never invoked.Code:Ext.get('some_input').on('change',function(){ console.log('test'); });
Thanks.
-
21 Nov 2012 2:57 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
Can I get a full test case? Are you trying this on just a <input> or a component?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
21 Nov 2012 11:46 PM #3
As I can understand Ext.get() work on dom level,not component,so:
should work.Code:Ext.get(document.body) .createChild({ tag:'input', type:'file' }) .on('change',function(){ console.log('test'); });
p.s.
browser's addEventListener('change',...) work as expected.
Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.


Reply With Quote