Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1175
Access cell's data using column name
posted
How do I access cell's data using column name in the CellUpdated event ?
  • 1175
    posted
    You can access the updated cell's value using the column name in the CellUpdated event as shown below :-


    private void xamDataGrid1_CellUpdated(object sender, Infragistics.Windows.DataPresenter.Events.CellUpdatedEventArgs e)


    {


    string val = e.Record.Cells["CustomerName"].Value.ToString();


    }