This should be easy to do but I can't find any documentation on it. I have a radnumerictextbox editor in the grid. The user can change the value of the editor without clicking on the edit first. Of course, no update shows until it is in edit mode. I want to make the editor readonly until the row is placed in edit mode. Here is a snippet of the grid template column for the editor. Thanks.
<telerik:GridTemplateColumn HeaderText="StockingTime" UniqueName="StockingTime">
<HeaderStyle HorizontalAlign="Right" />
<ItemStyle HorizontalAlign="Right" />
<ItemTemplate>
<telerik:RadNumericTextBox ID="grdSupplyChain_StockingTime_NumericEditor" runat="server" MaxValue="999" MinValue="0"
NumberFormat-DecimalDigits="2" NumberFormat-GroupSeparator="" NumberFormat-DecimalSeparator="." Width="75px"
Type="Number" ShowSpinButtons="true" Text='<%# Eval("StockingTime") %>'>
<IncrementSettings Step="0.01" InterceptMouseWheel="true" />
</telerik:RadNumericTextBox>
</ItemTemplate>
</telerik:GridTemplateColumn>
