• Resolved digiblogger

    (@digiblogger)


    Hello,

    is there a quick solution to output the value of a select field in another fields title.

    For example:

    fieldname3 selected option: USD
    fieldname7 selected option: EUR

    fieldname 4 (number field) title: Exchange Rate USD <> EUR

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @digiblogger

    You can enter span tags in the field’s label and fill them at the runtime.

    1. In the fieldname4 field, enter the following information as its label:

    Exchange Rate <span class="currency_from">USD</span> - <span class="currency_to">EUR</span>

    2. Insert a calculated field in the form to be used as an auxiliary (you can configure it as hidden by ticking a checkbox in its settings), and enter the equation:

    (function(){
    jQuery('.currency_from').html(fieldname3);
    jQuery('.currency_to').html(fieldname7);
    })()

    And that’s all.
    Best regards.

    Thread Starter digiblogger

    (@digiblogger)

    Again, simple works 🙂 It´s somewhat amazing what this plugin can do. Happy I bought pro some time ago.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Using field value in field title’ is closed to new replies.