Я включаю несколько строк с помощью кнопки checkbox Item renderer.SelectItem Метод в искры Datagrid?
это работает для расширения mx:Datagrid
(other answer)
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);
}
Но нет в s:Datagrid
нет super.selectItem
Так как включить ключ управления на свече DataGrid?
Мы можем использовать [сетку сетки искры] (http://blogs.adobe.com/aharui/2011/03/spark-checkbox-datagrid-with-drag-and-drop-support.html) чередуются с этим –