• Resolved netgui

    (@netgui)


    Hi, first i must say thx for this incredible plugin. What it can do is endless.

    I want to display a conditional instruct text field if value of a calculated field is less than 20. The calculated field is not dynamical. Issue is the instruct text field is already displayed before the user click on the button, it’s displayed as soon as the form is loaded (i guess it’s because empty is less than 20).

    Is there a workaround this issue please ?

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

    (@codepeople)

    Hello @netgui

    If you are defining the dependencies in the calculated field settings, please click on “Edit rule manually” and enter the following condition:

    '' != value && value<20

    Best regards.

    Thread Starter netgui

    (@netgui)

    thx it works… but now if the value = 0 then the conditional field is not displayed either.
    Is there a solution for this case ? (i tried : ” != value && value >= 0 && value <= 20 but did not work) :-/

    Plugin Author codepeople

    (@codepeople)

    Hello @netgui

    Please edit the equation as follows:

    '' !== value|r && value<20

    If the raw value is different from the empty text and it is less than 20.

    Best regards.

    Thread Starter netgui

    (@netgui)

    Solved. Mate, i would never ever have found this syntax alone 😀 thx a lot !

    Plugin Author codepeople

    (@codepeople)

    Hello @netgui

    It has been a pleasure to help you.

    Best regards.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Conditional text displays prematurely’ is closed to new replies.