Last active
May 17, 2024 05:36
-
-
Save AshikaSuresh/5ce068683525384db3beab773fdcea04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When the checkbox "Is shipping address same as billing address?" is checked, the Shipping Address section should not be visible. | |
| Configuration | |
| Page Details : Create Page (Canvas)- Orders | |
| Event Details : Field Event - Is shipping address same as billing address? - onChange |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let elem = ZDK.UI.getElementByID('shipping_address'); | |
| if (value==true) | |
| { | |
| elem.setVisibility(false); | |
| } | |
| else | |
| { | |
| elem.setVisibility(true); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment