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

Question

Question

Attached Form Style

asked on September 29, 2017

I want to change the style of the attached form that gets emailed out via a process step.

 

Is there a css class added to the html generated that I can key my changes to?

 

I've tried using media queries, but it seems to ignore "print" media declarations.

0 0

Replies

replied on October 8, 2017

Hi Adam,

If you would like the attached form style to be different from non-readonly form, one way is to change read-only form style using script like this:

$(document).ready(function(){
  if ($("input[name=IsLocked]").val() == "True")
  {
  	$("body").css("background-color", "yellow");
  }
});

 

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

Sign in to reply to this post.