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

numeric text box on focus problem

1 Answer 54 Views
Input
This is a migrated thread and some comments may be shown as answers.
Jagdish
Top achievements
Rank 1
Jagdish asked on 07 Jul 2010, 07:30 PM
Hi all
i am using 3- numeric text box in sequence . 
my java script code like this

               Client_radNumericA = '<%= txtLami_1.ClientID %>';
                Client_radNumericC = '<%= txtLami_3.ClientID %>';
                radNumericA = $find(Client_radNumericA);
                radNumericC = $find(Client_radNumericC);
                radNumericC._textBoxElement.value = parseFloat(radNumericA._textBoxElement.value).toFixed(2).toString();

when focus gone on "radNumericC " the value of "radNumericC " is clear.

any body have the solution?


Thanks in advance
Jagdish Prajapati


1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 08 Jul 2010, 07:59 AM
Hello Jagdish,

You should use

radNumericC.set_value(.........) ;

instead of

radNumericC._textBoxElement.value = ......... ;

http://www.telerik.com/help/aspnet-ajax/input_clientsideradtextbox.html

Greetings,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Input
Asked by
Jagdish
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or