// to get the record of specific row index.
var rowData = dataGrid.GetRecordAtRowIndex(4);
var propertyCollection = this.dataGrid.View.GetPropertyAccessProvider();
//to get the cellvalue of specific row and column
var cellValue = propertyCollection.GetValue(rowData, "EmployeeName");
|
Hi, i'm using this
var record = datagrid.View.GetRecordAt(selectedIndex);
var propertyCollection = datagrid .View.GetPropertyAccessProvider();
var cellvalue = propertyCollection.GetValue(record.Data, "TODO_YourPropertyName") + "";