How can I access each item on the edit form when the row is being updated/ inserted?
<MasterTableView EditMode="PopUp" CommandItemSettings-ShowAddNewRecordButton="True" DataKeyNames="RowId" >
keyfield RowID is getting displayed on the popup. I want to hide it.
Dim rowIdcol As GridBoundColumn = CType(e.Item.OwnerTableView.GetColumnSafe("rowId"), GridBoundColumn)
If (e.CommandName = RadGrid.EditCommandName Or e.CommandName = RadGrid.PerformInsertCommandName Or e.CommandName = RadGrid.CancelCommandName) Then
rowIdcol.ReadOnly = True
rowIdcol.Display = False
End If