I have this form where the only upload required is the Supplier-Acknowledged Approval Form:
The weird thing is that the other Upload buttons reappear once I do the upload required for this form:
Anyone else have this problem. The user cannot do anything with those buttons because they are read-only, but why do they appear and can I make it stop?
I have them set to read-only:
and the input field should be hidden:
$(document).ready(function(){ //Hide upload buttons $('.poUpload input').hide(); $('.prUpload input').hide(); $('.attachments input').hide(); }); //close document.ready