Hi,
I am using two numeric text boxes and in the onblur event of one textbox i need to assign the value in the next text box. But the value not setting properly. the SetValue not working. Object reference error is coming, Please help me to sort out the prolemm
my code is
in my java script :
I am using two numeric text boxes and in the onblur event of one textbox i need to assign the value in the next text box. But the value not setting properly. the SetValue not working. Object reference error is coming, Please help me to sort out the prolemm
my code is
<telerik:RadNumericTextBox ID="textBoxVarFirstChildR" Width="75px" onblur="duplicateFirstChildR();" |
MaxLength="8" runat="server" /> |
duplicateFirstChildR() { |
var textBoxVarFirstChildR = "<%=textBoxVarFirstChildR.ClientID %>"; |
var textBoxVarFirstChildNR = "<%=textBoxVarFirstChildNR.ClientID %>"; |
var fValue = $find(textBoxVarFirstChildR).GetValue(); |
$find(textBoxVarFirstChildNR).SetValue(fValue); |
} |