It would be an easy question, but property 'selectable' is set to 'false' and therefore selectedItem is always null.
In each row I have 3 buttons. When I click a button, I need to extract data corresponding to clicked row.
Any ideas how can I do that? Thanks.
I assume you are using the MX DataGrid, correct?
In your itemRenderer, reference the listData property and convert it to DataGridListData.
When the button is clicked dispatch a custom event that includes the rowIndex. You should be able to use the rowIndex to get the selected item out of your dataProvider.