Hello,
I was able to calculate two table fields with the script:
<script language="Javascript">
var xzz = document.forms.editform.value_eenheidsprijs_inho;
var yzz = document.forms.editform.value_aantal_inho;
xzz.onchange=xzz.onkeyup=yzz.onchange=yzz.onkeyup=function()
{document.forms.editform.value_totaal_inho.value=(document.forms.editform.value_aantal_inho.value * document.forms.editform.value_eenheidsprijs_inho.value);
}
</SCRIPT>
in the add and edit mode it works.
However in the inline add it does not.
I already copied the code in the list.
Wat am i doing wrong?