This is a migrated thread and some comments may be shown as answers.

get_value() property is not working with updated teleric library.

1 Answer 140 Views
Input
This is a migrated thread and some comments may be shown as answers.
Kanchan
Top achievements
Rank 1
Kanchan asked on 19 Sep 2013, 12:19 PM
Hi,

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?

1 Answer, 1 is accepted

Sort by
0
Kostadin
Telerik team
answered on 24 Sep 2013, 10:28 AM
Hi Kanchan,

I was not able to reproduce the issue on my side with our latest official release which is SP1 Q2 2013(2013.2.717). I prepared a small sample based on the code which you provided and attached it to this forum post. Please give it a try and let me know how it differs from your real setup.

Regards,
Kostadin
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Input
Asked by
Kanchan
Top achievements
Rank 1
Answers by
Kostadin
Telerik team
Share this question
or