• Resolved pexel

    (@pexel)


    Hello;
    We need your help with something. For example, when printing out 2 different results with 2 options, how do we show the result according to the option?

    For example; If I choose the 1st criterion, A will write the results (Hiding the B result). If I choose the 2nd criterion, B will write the result. (A will hide the results)

    Result screen code;

    <table><tbody><tr>
        <td style="text-align: left;"><b class="kriter1-aciklama mobile-aciklama">Hesaplama Sonucu :</b></td><td style="text-align: right;"><b><span data-cff-field="fieldname19"class="kriter1-sonuc mobile-sonuc" style="color:#ff6504;"></span></b><text style="color:#ff6504;"> </text></td>
    </tr><tr>
        <td style="text-align: left;"><b class="kriter2-aciklama mobile-aciklama"></b></td><td style="text-align: right;"><b><span data-cff-field="fieldname19"class="kriter2-sonuc mobile-sonuc" style="color:#ff6504;"></span></b><text style="color:#ff6504;"> </text></td>
    </tr><tr>
        <td style="text-align: left;"><b class="kriter3-aciklama mobile-aciklama"></b></td><td style="text-align: right;"><b><span data-cff-field="fieldname19"class="kriter3-sonuc mobile-sonuc" style="color:#ff6504;"></span></b><text style="color:#ff6504;"> </text></td>
    </tr><tr>
        <td style="text-align: left;"><b class="kriter4-aciklama mobile-aciklama"></b></td><td style="text-align: right;"><b><span data-cff-field="fieldname19"class="kriter4-sonuc mobile-sonuc" style="color:#ff6504;"></span></b><text style="color:#ff6504;"> </text></td>
    </tr><tr>
        </td></tr></tbody></table>

    Option A (criterion3, criterion4) gives the result of option B (criterion1, criterion2).
    In summary, how do we ensure that the selected results are reflected on the screen?

    Sample : Hesaplama

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter pexel

    (@pexel)

    First of all, thank you very much for your support. You are a very patient person. How should I do it for the “Calculate” button?
    If you share this, I will change all the buttons.
    thanks

    if (fbuilderjQuery(this.form).valid()) {
            my_counter = 0,
            my_interval = setInterval(function(){
                jQuery(".counter").html("Hesapl?yoruz : " + my_counter + " saniye");
                if(my_counter == 0){
                    clearInterval(my_interval);
                    jQuery(".counter").html("");
                    EVALEQUATIONS();
                    if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
                    jQuery('html, body').animate({
                        scrollTop: jQuery('[data-id="pex32pe87"]').offset().top
                    }, 2000);
                    }
                }
                my_counter--;
            }, 1000);
      }
    Plugin Author codepeople

    (@codepeople)

    Hello @pexel

    Since you are implementing a custom evaluation of the equations with a timer, counter, etc. you cannot modify it.

    Best regards.

    Thread Starter pexel

    (@pexel)

    Thank you for everything.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Result Hiding’ is closed to new replies.