I am using Xcced DataGrid Control and binding with a DataTable. I am making some of the columns in DataGridControl to Visible="False".
On click of the row i am getting the value of one of the invisible columns
Xceed.Wpf.DataGrid.DataRow objDataRow = sender as Xceed.Wpf.DataGrid.DataRow;
with objDataRow object i can access the Values in a particualr column. till here its working fine.
But after soting any of the columns , i am not getting the expected value of the invisible column. However i am getting the expected value for the columns which are visible .
What could be the reason ??
Thanks
Saurabh