• Resolved itexilion

    (@itexilion)


    Hello, i have another question,
    I need to show next button in form only if field Summary is not empty.
    how can i check if the Summary field is not empty?
    I thought about checking it in calculated field with getField function, but it returns [object Object]
    P.S. Summary contains text, not nubmers

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

    (@codepeople)

    Hello @itexilion

    The summary fields show the values of other fields. So, you can show/hide the “Next page” button if the original field has value or not.

    For example, assuming the fieldname1 field is included in the summary and you want to display the “Next page” button if this field has a value.

    Insert another calculated field in the form to be used as an auxiliary (you can hide it by ticking a checkbox in its settings) and enter the following equation:

    (function(){
    jQuery('.pbNext','.pbreak:visible').hide();
    if(fieldname1) jQuery('.pbNext','.pbreak:visible').show();
    })()

    Best regards.

    Thread Starter itexilion

    (@itexilion)

    It works) Thanks for blazing fast support)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘get Summary field value’ is closed to new replies.