When the user empties a value a numeric text box, the grid doesn't save changes and the changed field stays with a red dot in the corner.
In this scenario I would like the row to be saved with a null value for the numeric field. Is that possible?
<telerik:RadGrid
ID="RadGrid1"
runat="server"
AutoGenerateColumns="False"
CssClass="grid"
GroupPanelPosition="Top" Skin="Silk"
AllowFilteringByColumn="True" AlternatingItemStyle-Wrap="False" AlternatingItemStyle-BackColor="#B8B1B4" ItemStyle-Wrap="false"
AllowSorting="True" Height="650px" Width="100%" AllowPaging="True" PageSize="2000" AutoGenerateDeleteColumn="True" DataSourceID="LinqYonisLogs" AllowAutomaticUpdates="true" AllowAutomaticDeletes="true" OnBatchEditCommand="RadGrid1_BatchEditCommand">
<AlternatingItemStyle Wrap="False" BackColor="#B8B1B4"></AlternatingItemStyle>
<MasterTableView DataSourceID="LinqYonisLogs" CommandItemDisplay="TopAndBottom" DataKeyNames="CustomerCode, MQS_Code" EditMode="Batch">
<CommandItemSettings ShowAddNewRecordButton="false" ShowRefreshButton="false"/>
<Columns>
<telerik:GridBoundColumn DataField="CustomerCode" ReadOnly="true" FilterControlAltText="Filter CustomerCode column" HeaderText="Customer Code" SortExpression="CustomerCode" UniqueName="CustomerCode">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="MQS_Code" ReadOnly="true" FilterControlWidth="55px" FilterControlAltText="Filter MQS_Code column" HeaderText="MQS Code" SortExpression="MQS_Code" UniqueName="MQS_Code">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn DataField="QuotedPrice" DataType="System.Decimal" FilterControlAltText="Filter QuotedPrice column" HeaderText="Quoted Price" SortExpression="QuotedPrice" UniqueName="QuotedPrice">
<EditItemTemplate>
<telerik:RadNumericTextBox ID="rdteQuotedPrice" runat="server" DbValue='<%# Eval("QuotedPrice") %>'>
<IncrementSettings InterceptMouseWheel="false" InterceptArrowKeys="false" />
</telerik:RadNumericTextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="QuotedPriceLabel" runat="server" Text='<%# Eval("QuotedPrice") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn DataField="Action" FilterControlAltText="Filter Action column" HeaderText="Action" SortExpression="Action" UniqueName="Action">
</telerik:GridBoundColumn>
</Columns>
<PagerStyle AlwaysVisible="True"></PagerStyle>
</MasterTableView>
<ClientSettings EnableRowHoverStyle="True" AllowKeyboardNavigation="True">
<KeyboardNavigationSettings AllowActiveRowCycle="True" />
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="false" />
<Resizing AllowColumnResize="True" />
<Selecting AllowRowSelect="true" />
</ClientSettings>
<ItemStyle Wrap="False"></ItemStyle>
<PagerStyle AlwaysVisible="True" />
</telerik:RadGrid>