• Resolved guzel72

    (@guzel72)


    I am dealing with a calculator where I have three spinners. I have nothing to do with the values just I want is that when a user selects text on one spinner, the other three automatically change. Thanks in advance

    • This topic was modified 8 years, 8 months ago by guzel72.
Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @guzel72,

    If you want assign a value to a field (fieldname2), based on the value entered through another field (fieldname1), that are not calculated fields, you can insert a “HTML Content” field with the following piece of code as its content:

    <script>
    jQuery(document).on('change', '[id*="fieldname1_"]', function(){
    jQuery('[id*="fieldname2_"]').val(this.value);
    });
    </script>

    If you want to assign a value to a slider field programmatically, please, follow the instructions in the following link:

    https://cff.dwbooster.com/documentation#assign-slider-value-programmatically

    Best regards.

Viewing 1 replies (of 1 total)

The topic ‘Synchronize spinners’ is closed to new replies.