You are viewing limited content. For full access, please sign in.

Question

Question

Hide the Submit Button

asked on April 7, 2021 Show version history

Hello I create a form with a Instructions List also I create an Process Diagram just only using  Message Start Event and I don't want to see the Submit Button how do I hide it I just only want to have just the Instructions List only???

Submit tEST.JPG
Submit tEST.JPG (11.35 KB)
0 0

Answer

SELECTED ANSWER
replied on April 7, 2021

You could put this in the css javascript tab, javascript 

 

$(document).ready(function(){
  $('.Submit').hide();
});

Someone may have an easier way, as I think you could get around this in dev mode, but it doesn't look you want that security.

 

3 0

Replies

replied on April 7, 2021

CSS works too if you just want it to always be hidden.

.Submit {
    display: none !important;
}

 

2 0
You are not allowed to follow up in this post.

Sign in to reply to this post.