-
10 Feb 2011 7:59 AM #1
[FNR] Ctrl+C and ctrl+V did not work in numberField with firefox 3.6.13
[FNR] Ctrl+C and ctrl+V did not work in numberField with firefox 3.6.13
I didn't manage to copy/paste number from number field with key ctrl+C and ctrl+V on firefox 3.6.13
you can try with the number field in the column price here :
http://www.sencha.com/examples/pages/grid/editable.html
maybe the bug affect other firefox's version.
it work with Chrome
-
1 Jul 2011 2:09 AM #2
I also noticed this issue. I found this useful topic http://www.sencha.com/forum/showthre...rl-V-shortcuts
Then i've applied next fix to SpinnerField onKeyPress method:
Code:@Override protected void onKeyPress(FieldEvent fe) { super.onKeyPress(fe); if (fe.isSpecialKey(getKeyCode(fe.getEvent())) // here the fix is to check whether the control key is pressed in FireFox || fe.isControlKey()) { return; } char key = getChar(fe.getEvent()); if (!allowed.contains(key)) { fe.stopEvent(); } }
-
1 Jul 2011 2:46 AM #3
This should be fixed in SVN now as of revision 2410
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
Firefox Ctrl-F search issue with grids.
By momospeedracer in forum Ext 3.x: Help & DiscussionReplies: 3Last Post: 19 Jun 2010, 11:56 PM -
[FIXED] [1.1.3, Firefox3] NumberField suppresses Ctrl+C/Ctrl+V shortcuts
By Alex.Leshkin in forum Ext GWT: Bugs (1.x)Replies: 1Last Post: 17 Nov 2008, 7:21 PM -
[2.??][DUP] vtype +ctrl+v not working i firefox
By yade in forum Ext 2.x: BugsReplies: 1Last Post: 30 Jul 2008, 10:25 AM -
TreePanel, FireFox, using Shift or Ctrl Issue
By mikegiddens in forum Ext 1.x: BugsReplies: 1Last Post: 22 Jan 2007, 12:10 AM


Reply With Quote