I would like to select a record in a paged grid. The code works fine if the URL value is on the first set of the paged items but not if its on any of the paged data. (I would like to pass thru a value and then have the grid select the value on the specific page of the data set).
foreach (GridDataItem item in RelatedContactsGrid.MasterTableView.Items)
{
if (item.GetDataKeyValue("ContactTyparID").ToString() == ContactId.ToString())
{
item.Selected = true;
}
}