Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Hi Everyone,
How do i get the sum value of 2 drop down list and populate in onto "sum" fields? I am using community edition.
I have tried using this code but still dont work. Can anyone help?
<script type="text/javascript">
function compute() {
var a = parseInt($('input[name=amount1]').val());
var b = parseInt($('input[name=amount2]').val());
var total = a+b;
$('#sum').val(a+b);
}
</script>
<script type="text/javascript">
function compute() {
var a = parseInt($('input[name=amount1]').val());
var b = parseInt($('input[name=amount2]').val());
var total = a+b;
$('#sum').val(a+b);
}
</script
1 Comment
Walter
Sample at http://stackoverflow.com/questions/11814934/jquery-form-to-calculate-total-of-input-fields-but-several-instances-of-this
Please learn Javascript first.