• Resolved vdmalvasio

    (@vdmalvasio)


    Hello friends how are you? Could you tell me if what I’m trying to do is possible? I have 2 fields in the form: Field number 1 whose Field Id is: field_id1 and I have field number 2 whose field id is field_id2.

    The value of the first field is: Roberto
    I want to assign the following text string by default for the value of the second field: “My name is Value of field_id1” that is, “My name is Roberto” but I cannot find any dynamic tag to refer to the field of the same form.

    Could you help me?

Viewing 1 replies (of 1 total)
  • Plugin Support Abul Khoyer

    (@hellokhoyer)

    Hello @vdmalvasio,

    Thanks for your query. There is no default way to do that. As a workaround, you may do this using custom JS,

    let input1 = document.getElementById('ff_14_input_text');
    input1.addEventListener('blur', transferData);
    function transferData() {
    let inputValue = input1.value;
    let input2 = document.getElementById('ff_14_input_text_1');
    input2.value = inputValue;
    }

    Please map the input id according to yours.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Dynamic tag to reference a field of the same form’ is closed to new replies.