I have AllowAutomaticInserts = false
but it still shows on the grid is it because I have editMode = Batch?
<telerik:RadGrid ID="dgGrid" runat="server"
AllowAutomaticUpdates="True"
AutoGenerateColumns="False"
CellSpacing="0"
GridLines="None"
Skin="Sitefinity"
Width="100%"
AllowAutomaticDeletes="True"
AllowAutomaticInserts="False">
<ClientSettings>
<Selecting AllowRowSelect="True" />
</ClientSettings>
<MasterTableView AllowNaturalSort="False" EditMode="Batch" BatchEditingSettings-OpenEditingEvent="DblClick">
<BatchEditingSettings EditType="Cell" />
<PagerStyle PageSizeControlType="RadComboBox" />
</MasterTableView>
<ItemStyle Wrap="False" />
</telerik:RadGrid>
=================================== CODE
but it still shows on the grid is it because I have editMode = Batch?
<telerik:RadGrid ID="dgGrid" runat="server"
AllowAutomaticUpdates="True"
AutoGenerateColumns="False"
CellSpacing="0"
GridLines="None"
Skin="Sitefinity"
Width="100%"
AllowAutomaticDeletes="True"
AllowAutomaticInserts="False">
<ClientSettings>
<Selecting AllowRowSelect="True" />
</ClientSettings>
<MasterTableView AllowNaturalSort="False" EditMode="Batch" BatchEditingSettings-OpenEditingEvent="DblClick">
<BatchEditingSettings EditType="Cell" />
<PagerStyle PageSizeControlType="RadComboBox" />
</MasterTableView>
<ItemStyle Wrap="False" />
</telerik:RadGrid>
=================================== CODE
With dgGrid
'.MasterTableView.Columns.Add(editcolumn)
.MasterTableView.CommandItemDisplay =
GridCommandItemDisplay.Bottom
.MasterTableView.BatchEditingSettings.EditType =
GridBatchEditingType.Row
.MasterTableView.AllowAutomaticInserts =
False
End With