次の機能を備えた ExtJS 4 のグリッド パネルがあります。
extend : 'Ext.grid.Panel',
multiSelect: true,
alias : 'widget.negativeMoviesView',
frame : true,
autoScroll : true,
height: 690,
renderTo: Ext.getBody(),
store : 'NegativeMovieStore',
columns : [{
header : 'Name',
dataIndex : 'name',
flex : 1
}]
multiSelect は true に設定されています。firebug をチェックインすると、実際には true で、selectionMode は MULTI ですが、一度に 1 行しか選択できません。私は何を間違っていますか?