When I Try:
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" Culture="English (United States)" Type="Currency" Font-Size="Smaller" Height="8px" Width="75px" IncrementSettings-Step=".01" AutoPostBack="false" ShowSpinButtons="true" Value='3.49' >
Everything works 'fine', but when I attempt to data bind to the value property (asp.net/.net 3.5) like :
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" Culture="English (United States)" Type="Currency" Font-Size="Smaller" Height="8px" Width="75px" IncrementSettings-Step=".01" AutoPostBack="false" ShowSpinButtons="true" Value='<%# Eval("CurrentPrice") %>' >
I get "Specified cast is not valid." as a runtime exception. The type for the CurrentPrice Property is Decimal, since the "Type" property for this control is "Currency" (and it is called a "NUMERIC" text box) I expect a decimal to work.
Any help would be greatly appreciated!
Cos