1
0
-1

Hello Experts,

I have embedded a form in my website. When I add a new record and click de Save Button the form returns to its embedded state. When I click on the Back Button the form leaves the embedded state. Which is of course not the intention.

Has anyone encountered this problem? Is there a solution?

Regards,

 

Arend-Henk Huzen

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hello Experts, My work-around: not showing the button.

      I placed this javascript code in the header of the Userview CRUD

      <script>
      window.onload=function(){
      document.getElementById("cancel").style.display='none';
      }
      </script>

        CommentAdd your comment...