| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false"> |
| <MasterTableView Width="100%" DataKeyNames="InvID" EnableNoRecordsTemplate="true" Name="MainTable" EditMode="EditForms" > |
| <Columns> |
| <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" /> |
| <telerik:GridBoundColumn HeaderText="" DataField="OrgID" UniqueName="OrgID" Display="false" ReadOnly="true" ></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn HeaderText="Project" DataField="Organization" UniqueName="Organization" ReadOnly="true"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn HeaderText="Stock Number" DataField="StockNumber" ReadOnly="true"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn HeaderText="Total OH" DataField="OH"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn HeaderText="Location" DataField="Location" UniqueName="Location" ReadOnly="true"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn HeaderText="Serial" DataField="Serial" UniqueName="Serial" ReadOnly="true"></telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
I have my radgrid using the editform mode to edit a column. IF there is more than 1 record within the grid and the edit command button is selected all rows disapear except the one selected for edit. The edit forms does not display until only one record is present.
If one 1 row exsit the editform displays correctly.
Would anyone know why this might be happending and how to fix it?
Thanks