1
0
-1
1 answer
- 210
You can use custom HTML and write a script
- Anas Misbah Shami
It would be something like:
<script> $(document).ready(function () { $("#subformField").change(function () { // Get the value from the subform field var subFieldValue = $("#subformField").val(); // Put the value in the parent form field $("#parentFormField").val(subFieldValue); }); </script>
Add your comment...
How to get same value from amount? im try put #envVariable.Amount#, but its not work.
What are you trying to achieve? As you type "123" in amount, the "total apply" field changes in realtime? or after form submitted?
Amount is key in by staff, when HR need to do calculation, HR need to key in again that amount. That why i try get solution how to get same value of amount without HR need to key in again.