Since the latest release I am not able to retrieve data from the radgrid using the following method:
This has affected all of my tables that use ExtractValuesFromItem. Is there another update coming to fix this?
| private int _getPhyIdfromArg(GridCommandEventArgs e) |
| { |
| int phyId = 0; |
| GridEditableItem eitem = e.Item as GridEditableItem; |
| Hashtable newValues = new Hashtable(); |
| eitem.OwnerTableView.ExtractValuesFromItem(newValues, eitem); |
| phyId = Convert.ToInt32(newValues["PhysicianId"]); |
| return phyId; |
| } |
This has affected all of my tables that use ExtractValuesFromItem. Is there another update coming to fix this?