Hi,
I am trying to assign value to Radnumeric textbox from jquery on change() event of same textbox.
But its not working fine. If i replace teleik textbox to asp textbox its working fine.
MyCode.aspx
Please check and let me know.
Thanks,
Abhi
I am trying to assign value to Radnumeric textbox from jquery on change() event of same textbox.
But its not working fine. If i replace teleik textbox to asp textbox its working fine.
MyCode.aspx
<script type="text/javascript"> $(document).ready(function() { $('#<%= txtAmount.ClientID %>').change(function() {$('#<%= txtAmount.ClientID %>').val(123);}}) });</script><telerik:RadNumericTextBox ID="txtAmount" ShowSpinButtons="false" Type="Number" runat="server" InvalidStyleDuration="100" Width="200"> <NumberFormat DecimalDigits="2" DecimalSeparator="." AllowRounding="true" KeepNotRoundedValue="False" /> </telerik:RadNumericTextBox>Please check and let me know.
Thanks,
Abhi