[アイテムレンダラー]チェックボックスをクリックして、複数行の選択を有効にしています。
これは拡張のために機能しますmx:Datagrid
(他の答え)
override protected function selectItem(item:IListItemRenderer,
shiftKey:Boolean, ctrlKey:Boolean,
transition:Boolean = true):Boolean
{
// only run selection code if a checkbox was hit and always
// pretend we're using ctrl selection
if (item is CheckBox)
return super.selectItem(item, shiftKey, true, transition);
else //Avenir Cokaj 23/06/11: this enables the flex's natural selection
return super.selectItem(item, shiftKey, ctrlKey, transition);
}
しかし、スパークデータグリッドでコントロールキーを有効にする方法はありませんsuper.selectItem
かs:Datagrid
?