Thursday, 30 January 2014

Get KeyValue data from Devexpress Grid

Here is a way of fetching Keyvalue from Devexpress Grid

for (int i = 0; i < GridCurrency.VisibleRowCount; i++)
                {
                    Int16 intCountryID = Convert.ToInt16(GridCurrency.GetRowValues(i, GridCurrency.KeyFieldName));

No comments:

Post a Comment