1
0
-1

How to get same value from amount? im try put #envVariable.Amount#, but its not work.

  1. Bastiana

    What are you trying to achieve? As you type "123" in amount, the "total apply" field changes in realtime? or after form submitted?

  2. aimi

    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.

CommentAdd your comment...

1 answer

  1.  
    2
    1
    0

    You can use custom HTML and write a script

    1. Fabian Barrera

      Hi Anas Misbah Shami , please could you share an example of this HTML code ?


      Regards

      Fabian

    2. 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>


    CommentAdd your comment...