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

Question

Question

Make field form enable for some participants

asked on August 20, 2015

Hello

I want to enable two fields (upload file field and input field) for some participants during approval process when the "Make form read-only for task participants" is checked.

I trying with JavaScript code but not work.

 

     function enableControls() {
         var nombre = $('.UserName input').val();
          
        if (nombre === 'Usuario anónimo') {
          //-- Nothing 
        } else {
          $('.IdOperador input').attr('readonly', false);
          $('.Fboton input').attr('readonly', false);
          //-- alert(nombre);
          
        }
      }

All fields continue disabled in the approval process.

 

Any idea?.

 

Thanks.

 

 

0 0

Answer

SELECTED ANSWER
replied on August 21, 2015

Hi there,

A read only user task doesn't take any input value except Comment and Action in the bottom.

If you want value to be captured in a form, then it cannot be read only user task. You will use a non-ready only form, and use a read only section and a non read only section.

0 0
replied on August 21, 2015

Ok Abby, i will.

Thanks.

 

 

  

0 0

Replies

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

Sign in to reply to this post.