tags:

views:

89

answers:

1

How to get value of selected column form Advanced datagrid whose visble propery is false .

A: 

Just like any other

myDataGrid.selectedItem.column[--invisibleColumnsIndex--]

where --invisibleColumnsIndex-- is the numeric index of the column you want the value of.

Or you can just go for the value in the dataProvider.

myDataGrid.selectedItem.InvisibleColumnsNameInDataProvider

both methods should work but I have only tested the second one.

invertedSpear