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

Question

Question

Laserfiche Forms- Hide field and unhide on next step

asked on October 7, 2016 Show version history

What would be the best way to hide a field on the initial step (submitter) and then to unhide it for the next step (approver) and leave it unhidden from then on. 

Thanks!

 

0 0

Replies

replied on October 7, 2016

Does the field in question need to be on the form that the submitter fills out?

You need to create 2 forms for the process in question. One with and one without the field. Then for the user task step, assign it the form that shows the field.

0 0
replied on October 11, 2016

The field does not need to be on the form that the submitter fills out. I'm only trying to hide the signature field.

0 0
replied on October 8, 2016

If you want to use same form, you can find the id of the step by from process diagram:

The use following JavaScript to hide the field on certain step:

$(document).ready(
function() { 
if($('input[name="stepid"]').val() =="[step_id]") {
$("#q8").addClass('hidden');
}
});

 

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

Sign in to reply to this post.