3
2
1

Hi Guy's,

Hope you can help?

I need to hide the "Save" button that sits at the bottom of the page, in a userview.

it seems to be there by default.

Thanks,

Ernest

 

 

    CommentAdd your comment...

    2 answers

    1.  
      2
      1
      0

      Hi Ernest Pachonick

      In a form, add custom html and type in the following javascript to hide the element(s) you desire:

      <script type="text/javascript">
      $(document).ready( function(){
       $("#submit").hide();
       $("#assignmentComplete").hide();
       $("#cancel").hide();
       $("#saveAsDraft").hide();
      $(".print-button").hide();
      });
      </script>
      1. varun phou

        Hello i try to the same this sample but i still can't hide submit button.does we have any way for hide 

      CommentAdd your comment...
    2.  
      1
      0
      -1

      Hi Matthew,

      Great!, Thanks,

      Cheers

      Ernest

       

       

        CommentAdd your comment...