Please can someone provide some guidance on why the following is not working.
<telerik:RadNumericTextBox ID=
"lnVoltage"
runat=
"server"
Label=
"Voltage (V): "
Width=
"160"
ToolTip=
"Three phase voltage"
MinValue=
"0"
MaxValue=
"1000"
Value=
"400"
NumberFormat-DecimalDigits=
"0"
DataType=
"Double"
ShowSpinButtons=
"true"
>
<ClientEvents OnValueChanged=
"singlePhVoltage"
OnLoad=
"singlePhVoltage"
/>
</telerik:RadNumericTextBox>
<telerik:RadCodeBlock ID=
"RadCodeBlock2"
runat=
"server"
>
<script type=
"text/javascript"
>
<!--
function singlePhVoltage(sender, eventArgs) {
alert(
"in function"
);
}
-->
</script>
</telerik:RadCodeBlock>
When I change the textBox value the function is not being called. Have tried several things.