ron13315
Member
- Joined
- Jul 23, 2014
- Messages
- 283
- Points
- 18
Hi guys, im using this jautocalc https://github.com/c17r/jAutoCalc
I cant get to work the sum of jAutoCalc="SUM({#item_total})" because everytime I add new rows it return back to zero.
I cant get to work the sum of jAutoCalc="SUM({#item_total})" because everytime I add new rows it return back to zero.
HTML:
<form id="cart" action="{{ route('items.store') }}" method="POST">
<table name="cart">
@csrf
<label name="customer" for="customer">Customer</label>
<select name="customer">
<option value="customer 1">customer 1</option>
<option value="customer 2">customer 2</option>
<option value="customer 3">customer 3</option>
<option value="customer 4">customer 4</option>
</select>
<tr class="line_items">
<td><button class="row-remove">Remove</button></td>
<td>
<select name="items[]">
@foreach ($itemlists as $itemlist)
<option value="{{ $itemlist->itemname }}">{{ $itemlist->itemname }}</option>
@endforeach
</select>
</td>
<td><input type="text" name="items[]" id="price" value="0"></td>
<td><input type="text" name="items[]" id="kilo" value="0"></td>
<td><input type="text" name="items[]" id="item_total" value="" jAutoCalc="{#price} * {#kilo}"></td>
</tr>
<tr>
<td><input type="text" name="total" value="" class="form-control" jAutoCalc="SUM({#item_total})"></td>
</tr>
<tr>
<td colspan=""><button class="row-add">Add Row</button></td>
</tr>
</table>
<button name="submit" type="submit">submit</button>
</form>
<script type="text/javascript">
$(function() {
function autoCalcSetup() {
$('form#cart').jAutoCalc('destroy');
$('form#cart tr.line_items').jAutoCalc({keyEventsFire: true, decimalPlaces: 2, emptyAsZero: true});
$('form#cart').jAutoCalc({decimalPlaces: 2});
}
autoCalcSetup();
$('button.row-remove').on("click", function(e) {
e.preventDefault();
var form = $(this).parents('form')
$(this).parents('tr').remove();
autoCalcSetup();
});
$('button.row-add').on("click", function(e) {
e.preventDefault();
var $table = $(this).parents('table');
var $top = $table.find('tr.line_items').first();
var $new = $top.clone(true);
$new.jAutoCalc('destroy');
$new.insertBefore($top);
$new.find('input[type=text]').val('');
autoCalcSetup();
});
});
</script>