This topic is locked

literal not work on Asprunner 6.2

6/30/2010 10:05:42 AM
ASPRunnerPro General questions
E
erdinoxyz author

Hello.

This script good work on Asprunner 6.0 but not working on asprunner 6.2

{literal}<script>

document.forms.editform.value_Price.onchange=function()

{

document.forms.editform.value_Price.value=123;

}

</SCRIPT>{/literal}

What I do?

A
ann 6/30/2010

Hi,
names of controls were changed in ASPRunner 6.2.

Here is the correct code:

<script>

document.forms.editform1.value_Price_1.onchange=function()

{

document.forms.editform1.value_Price_1.value=123;

}

</script>
E
erdinoxyz author 6/30/2010

Very thanks your codes is good working.