Hide "Save" button in userview

Confluence User - 16 Nov, 2016

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

 

 

userviews

3


17 Nov, 2016
confluenceUser
1
confluenceUser

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>
17 Nov, 2016
confluenceUser
confluenceUser

Hi Matthew,

Great!, Thanks,

Cheers

Ernest

 

 

09 Sep, 2020
confluenceUser
confluenceUser

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

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print