• Resolved Graicifyd

    (@graicifyd)


    Hi,

    Is it possible for me to have an onlclick event attached to a ‘calculate button’ such that a particular div field open up when the button is clicked on.

    For example, I want fieldname2 to open up when the button is clicked on.

    Thank you for your support

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

    (@codepeople)

    Hello @graicifyd

    You can assign the predefined class name: hide to the fieldname2 fiel.

    Note, the class names are assigned to the fields through their attributes: “Add Css Layout Keywords”

    And then, enter the following piece of code as the onclick event of the button:

    
    jQuery('.hide').removeClass('hide');
    

    Best regards.

    Thread Starter Graicifyd

    (@graicifyd)

    Amazing! Thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘DEPENDENCY ON CALCULATE BUTTON’ is closed to new replies.