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
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