I've built a RadGrid with a custom edit form. I then use this form for both inserting and editing of records. The insert portion works correctly but when I try to edit a record the form comes up without any values in the RadNumericTextBox.
I've tried populating the fields like the code below but then I get an error error when I switch to insert mode.
How do I populate the text fields when the RadGrid is in edit mode?
I've tried populating the fields like the code below but then I get an error error when I switch to insert mode.
<telerik:RadNumericTextBox ID="txt_open_indemnity" Runat="server" Text='<%# Bind( "paid_indemnity" ) %>' |
CssClass="style2" Culture="English (United States)" DataType="System.Decimal" |
TabIndex="8" Type="Currency" Value="0" Width="100px"> |
</telerik:RadNumericTextBox> |
How do I populate the text fields when the RadGrid is in edit mode?