locked
How to disable business process next stage button using javascript RRS feed

  • Question

  • Hi,

    here i have a requirement that at certain conditions i need to prevent next stage on click event using javascript can any body suggest me

    Tuesday, May 5, 2015 10:31 AM

All replies

  • Hi,

            You can use the below code to hide NextStage button using javascript

            document.getElementById("stageAdvanceActionContainer").style.visibility = 'hidden';

    Note: Its unsupported method
    Wednesday, May 6, 2015 12:14 PM