• Resolved arnab28

    (@arnab28)


    Hello Sir,

    Can I use multiple calculator filed forms on the same website?
    I can try once one from I can change stylesheet it will effect another form..How can I use two different stylesheets in two different forms.

Viewing 15 replies - 16 through 30 (of 49 total)
  • Thread Starter arnab28

    (@arnab28)

    Hello,
    I am creating a calculator form one website, how can I use this same form in another website. should I create from beginning or I can do else?

    Thread Starter arnab28

    (@arnab28)

    I can create a form for using a calculator filed plugin. can I use the same form in different websites or I can create this form as the beginning. give me a suggestion?

    Plugin Author codepeople

    (@codepeople)

    Hello @arnab28

    You should install the same version of the plugin on both websites. And then, export the form from the current website, and import it in the new one. Please, visit the following link to the plugin’s documentation, that describes the Export/Import section:

    https://cff.dwbooster.com/documentation#import-export-form

    Best regards.

    Thread Starter arnab28

    (@arnab28)

    After submitting the form I want to show a thank you message using javascript. can you give me an example using code as a jquery or javascript code?

    Plugin Author codepeople

    (@codepeople)

    Hi! We’d like to help but we can’t reply about that in this forum. We are not allowed to support any customers in these forums.

    For pro or commercial product support please contact us directly on our site. This includes any pre-sales topics as well.

    Commercial products are not supported in these forums. We will happily answer this and any other questions you can have on our own site.

    Thank you.

    Thread Starter arnab28

    (@arnab28)

    Hello,

    In the currency field, prepopulated data I can use predefine value but the user not seen predefine value, if the user doe’s not fillup this filed, this prepopulated data is incorporated into the calculation, how can I do that?

    Plugin Author codepeople

    (@codepeople)

    Hello @arnab28

    If you tick the checkbox: “Use predefined value as placeholder” in the field’s settings, the plugin converts the information entered into the “Predefined Value” attribute into placeholders. In the HTML standard, the placeholder attributes in the input tags are not values. They are short hints to indicate the users what values to enter. The placeholders are not used in the equations or checked by the validation rules, and they are not submitted. More information about the placeholders, reading the following article:

    https://www.w3schools.com/tags/att_input_placeholder.asp

    Best regards.

    Thread Starter arnab28

    (@arnab28)

    I understand what you are told but in the currency filed if user does not enter anything into this field, then this predefined data is calculated. but this predefine data I doe’s not want to show the user.

    Plugin Author codepeople

    (@codepeople)

    Hello @arnab28

    If you want to use a predefined value until the user enters a value in the field, includes a conditional operation into the equation, instead of complex styles.

    For example, if you want to use the number 123 for the fieldname1 field, you can use the following piece of code as part of the equation:

    
    IF(fieldname1, fieldname1, 123)
    

    and that’s all.

    Best regards.

    Thread Starter arnab28

    (@arnab28)

    I do not understand your code, can you tell me this code, can I use this code as a jquery?below page link is there. check this Reprocessing Costs field, this field placeholder whatever value is there when user put as a blank then $101.40 this value is automatically calculated. please suggest me this code.

    https://bsbtest.assiduusinc.com/subscription/

    Thread Starter arnab28

    (@arnab28)

    Can you help me figure it out this issue?

    Plugin Author codepeople

    (@codepeople)

    Hello @arnab28

    You only should leave in blank the “Predefined Value” attribute in the form’s settings.

    Best regards.

    Thread Starter arnab28

    (@arnab28)

    If I am put in the bank in predefine value then user does not put any value in this field how can i automatically add $101.40 value in calculation field

    Plugin Author codepeople

    (@codepeople)

    Hello @arnab28

    Please, read my previous entries. In this case, you should use a piece of code similar to the following one as part of the equation:

    
    IF(fieldname1, fieldname1, 123)
    

    Of course, with the correct field’s name and value.

    Best regards.

    Thread Starter arnab28

    (@arnab28)

    I am using this jquery code under button click . but when i used this code submit button is not showing . Can you suggest me where i am going wrong?
    <script>
    $( document ).ready(function() {

    $( “.pbSubmit” ).click(function() {
    var txt = $(‘#fieldname8_1’).val();
    if (txt==”) {
    $(‘#fieldname8_1’).val(‘101.40’);

    });

    });
    </script>

Viewing 15 replies - 16 through 30 (of 49 total)
  • The topic ‘Calculater Field Form Design Issue’ is closed to new replies.