what get selected column value In Advanced data grid
How to get value of selected column form Advanced datagrid w开发者_StackOverflow中文版hose visble propery is false .
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.
精彩评论