Is it possible to remove the "cancel" button from the form of an activity?

Confluence User - 13 Sep, 2018
cancel-button;forms;activity

2


14 Sep, 2018
confluenceUser
confluenceUser

Hey there Sarah,

It is certainly possible to do this via Javascript in a Custom HTML form element in the form.

However, do note about usability issues when end users use your form, unless it is intended. I am not clear on the intention of doing this.

14 Sep, 2018
confluenceUser
confluenceUser
<script type="text/javascript">
$(document).ready( function(){

 $("#cancel").hide();

});
</script>

 

or 

 

<script type="text/javascript">
$(document).ready( function(){

 $("#cancel").remove();

});
</script>
RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print