Discussions

 View Only
  • 1.  IOL Hide

    Posted 05-14-2018 17:49
    Using IOL I am able to make the Save Button Hide when conditions are true but when the user makes a change to make the condition false I am not able to make Save Button reappear with $(".IconOnly").show();$("#saveButton").show();. Is this possible to do?


  • 2.  RE: IOL Hide

    Posted 05-14-2018 18:59
    To hide:
    $(".IconOnly, #saveButton, #footerSaveButton").hide();
    To show:
    $(".IconOnly, #saveButton, #footerSaveButton").show();
    Make sure you are not removing instead of hiding the elements. Also, you can combine several selectors by separating them with a comma.