• Resolved cristian.calin

    (@cristiancalin)


    Hi CodePeople,

    Is there any way to get the result of a calculated field outside of the form?

    I have managed to get it under a “Html Content” field using the method described here, but this method doesn’t work in this situation.

    Thanks a lot for the effort you put in developing this amazing plugin and helping us in the support forum.

    Cheers!

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello,

    I’ll try to explain the process with an example. If the equation associated to the calculated field is: fieldname1+fieldname2, and you want to display the result in a tag outside the form, for example if there is a tag with the class name: “my-outside-field” (no matter where the tag is), the equation should be edited as follows:

    (function(){
    var result = fieldname1+fieldname2;
    jQuery('.my-outside-field').html(result);
    return result;
    })()

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Get the calculated field result outside of the form?’ is closed to new replies.