• Resolved troxx

    (@troxx)


    I need to create a rather complex calculator form – with aobut 150 fields. Tried to do that with elementor and dynamic.ooo plugin, but the result is veeery slow ?? I can try to recreate this form with CFF, but what ar the chances that it will work fast? My form is at https://dev.galerievenis.pl/kalkulator-nowy/

    • This topic was modified 2 years, 11 months ago by troxx.

    The page I need help with: [log in to see the link]

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

    (@codepeople)

    Hello @troxx

    I’m sorry, but I cannot evaluate the form created with a third-party plugin. Please, send me the link to the form designed with our plugin.

    Best regards.

    Thread Starter troxx

    (@troxx)

    I don’t need you to evaulate other plugin, I just want you to look at the complexity of my form ant tell me if CFF can manage this kind of form with a decend speed?

    Plugin Author codepeople

    (@codepeople)

    Hello @troxx

    I’m sorry, but I cannot respond to this question without re-implementing your form with our plugin. Our plugin gives the users the possibility to implement complex or basic equations. But the response time depends on the user implementation.

    For example, the following equations give the same result:

    
    (function(){
    var result;
    if(fieldname1 == 1) result = 'A';
    if(fieldname1 == 2) result = 'B';
    if(fieldname1 == 3) result = 'C';
    if(fieldname1 == 4) result = 'D';
    if(fieldname1 == 5) result = 'E';
    if(fieldname1 == 6) result = 'F';
    return result;
    })()
    
    (function(){
    switch(fieldname1)
    {
    case 1: return 'A';
    case 2: return 'B';
    case 3: return 'C';
    case 4: return 'D';
    case 5: return 'E';
    case 6: return 'F';
    }
    })()

    However, the first implementation is slower than the second one, and both can be implemented with our plugin.

    So, the form’s performance can be affected by your implementation of the equations, not necessarily by the plugin.

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘form speed at about 150 calculator fields?’ is closed to new replies.