i have upgraded the teleric control library with the latest version.
Earlier i was using get_value() property to get the value from the rad numeric text box and it was working fine, now when i updated it this property(get_value) is not supporting to get the value from rad numeric textbox.
i have written my code which i have used below.
|
function OnBlur() |
|
{ |
|
var Input1 = $find("<%= RadNumericTextBox1.ClientID %>"); |
|
var value1= Input1.get_value(); |
|
var result = value1*2; |
|
var Input3 = $find("<%= RadTextBox1.ClientID %>"); |
|
Input3.set_value(result); |
|
} |
|
function OnBlur1() |
|
{ |
|
var Input2 = $find("<%= RadNumericTextBox2.ClientID %>"); |
|
var value2= Input2.get_value(); |
|
var result = value2*2; |
|
var Input3 = $find("<%= RadTextBox1.ClientID %>"); |
|
Input3.set_value(result); |
|
} |
|
<telerik:RadNumericTextBox ID="RadNumericTextBox1" Runat="server"> |
|
<ClientEvents OnBlur="OnBlur" /> |
|
</telerik:RadNumericTextBox> |
|
<telerik:RadNumericTextBox ID="RadNumericTextBox2" Runat="server"> |
|
<ClientEvents OnBlur="OnBlur1" /> |
|
</telerik:RadNumericTextBox> |
|
<telerik:RadTextBox ID="RadTextBox1" runat="server"> |
|
</telerik:RadTextBox> |
Can you please tell me which property will work with this so that i can get only value from the rad numeric textbox?