Is it possible to do autocalc in repeating fields?
For a simple example:
..since its always
base + (per level * level).
or to use the actual attributes:
OCCB + (OCCPL * LEVEL)
But I'm not sure if this is possible with the limitations of repeating fieldset, or if it is, how to call the values from that same fieldset..since they are appended with _1 etc when created.
For a simple example:
<fieldset class="repeating_OCCSK"> <input type="number" name="attr_OCCB" value=0> <input type="number" name="attr_OCCPL" value=0> <input type="number" name="attr_OCCT" value="@{OCCB}+(@{OCCPL}*@{LEVEL})" disabled="true"> </fieldset>I'm attempting to calculate their total skill percentage for them so when they change levels, they don't have to go in and edit 50+ text boxes they can just change the level and they all update.
..since its always
base + (per level * level).
or to use the actual attributes:
OCCB + (OCCPL * LEVEL)
But I'm not sure if this is possible with the limitations of repeating fieldset, or if it is, how to call the values from that same fieldset..since they are appended with _1 etc when created.