PDA

View Full Version : Bug in Ext.nd.UIView.gridHandleKeyDown


Zakaroonikov
07-29-2007, 11:49 PM
the line that reads:

case e.SPACE :
Ext.MessageBox.alert("Coming Soon","In a future release, the space bar will toggle the selection of the document.");
break;


should be

case e.SPACE :
if (row)
Ext.MessageBox.alert("Coming Soon","In a future release, the space bar will toggle the selection of the document.");
break;


Otherwise if you type the 'space' key on a field on the toolbar then it will display that message

RWaters
07-30-2007, 01:06 AM
yep, we actually found and fixed this one too... still hoping to push out the revision at some point this week.

RWaters
07-30-2007, 01:08 AM
BTW, I want to thank everyone for doing such a great job pointing out bugs... It's really nice when the community helps by narrowing them down and especially nice if a proposed fix is included! :)

perka
07-30-2007, 03:03 PM
How about setting up a bug tracking application?

RWaters
07-30-2007, 04:21 PM
How about setting up a bug tracking application?

Also in the works :D