To simplify the code logic and make some of the column values easily accessible on the client,
r.a.d.
grid can expose them client-side.
To enable the serialization of
column values of your choice, you should set the
ClientSettings -> EnableClientKeyValues
grid property to
true. Thus you can extract the respective field value for row through the
KeyValues array (attribute of the RadGridTableRow class) passing the unique name of grid
column. Note that this column name has to be part of the
DataKeyNames array of the
MasterTableView/GridTableView.
This approach is suitable mostly for extracting primary keys client-side.
You can review this article from the product documentation for additional details:
Extracting key values client-side