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;
}

 

3 0
replied on November 15, 2024 Show version history

Thank you!

I had to recreate a form (with a large table) in the classic designer due to column sizing challenges.

Had to revert back to the old way of doing things, and needed a memory jogger.

This was a big help!

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

Sign in to reply to this post.