I need to create a receipt thing. User is able to create new product which is consist of various number of ingredients.
I'm using a table to layout the inputs, and on each row there is a select list of existing ingredient generated with the following code:
<?php echo $this->Form->input('Receipt.0.ingredient_id', array( 'label' => false,'div' => false, 'class' => ''));
which generated the following html
<select id="Receipt0IngredientId" class="" name="data[Receipt][0][ingredient_id]">
<option value="1">Ingredient B</option>
<option value="3">Ingredient B</option>
<option value="4">Ingredient B</option>
</select>
and another field to input the amount of the chosen ingredient needed.
<?php echo $this->Form->input('Receipt.0.amount', array( 'label' => false,'div' => false, 'class' => '')); ?>
the thing is the kinds of ingredients will vary based on the the product and currently I'm using jQuery to add new rows when user clicked add new row button, but I dont know how to change the name value of each field the jQuery code:
$("#addNewLine").click(function() {
$('#add_ingredient tbody>tr:last').clone(true).insertAfter('#add_ingredient tbody>tr:last');
return false;
});
I'm not sure if this is the best way to implement this. any help or suggestion would be appreciated, thanks.