On Dec 7, 2007 5:59 AM, superabe superabe <[EMAIL PROTECTED]> wrote:
> Anybody know how to programmatically deselect cells, in an
> AdvancedDataGrids (Flex 3 Beta2). ?
>
> I can successfully use the "selectedCells" property of the ADG, with
> "selectionMode" set to "multipleCells" to select cells programmatically.
> I cannot however seem to find a convenient way to deselect them. (without
> having to subclass the ADG)
>
> I have tried the following unsuccessfully :
>
> this.grid.selectedCells = new Array({rowIndex:-1, columnIndex:-1});
> this.grid.selectedCells = new Array();
> this.grid.selectedCells = null;
>
> TIA,
> - superabe
>