Chrome issue with ‘specialkey’
August 28, 2009
ExtJS doesn’t support specialkey event on Google Chrome nor any other key events are supported (keydown,keypress).
If you want Google Chrome to support specialkey, keypress, keydown event, then all you have to do is :
this.reffield.on('keydown',function(field,evt){
if(evt.getKey() == 17 && evt.getKey() == 9 || evt.getKey() == 9 && evt.getKey() != 17 )
Ext.getCmp('mailSub').focus(false,10);
},this);
doing so you will gain support on both Google Chrome as well as Mozilla Firefox
Cheers
Have Fun
ExtJS, complete Java Script Framework

![[del.icio.us]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/digg.png)
![[dzone]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/dzone.png)
![[Facebook]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/facebook.png)
![[Friendsite]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/friendsite.png)
![[Google]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/google.png)
![[LinkedIn]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/linkedin.png)
![[MySpace]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/myspace.png)
![[Twitter]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/twitter.png)
![[Windows Live]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/yahoo.png)
![[Email]](http://mavendeveloper.com/wp-content/plugins/bookmarkify/email.png)