Question

I know that in SharePoint Designer workflow it can be checked when attachments are added, but this isn't so super, because when there is some attachment in the list item and someone forgot to add other attachment, then workflow can't check this. So is it possible to check this e.g. via PowerShell?

Était-ce utile?

La solution

So, now I use jquery function in new and edit form:

function PreSaveAction()  
{  
    var elm = document.getElementById("idAttachmentsTable");  
    if (elm == null || elm.rows.length == 0)  
        {  
                document.getElementById("idAttachmentsRow").style.display='none';  
        var r=confirm("some text");  
            if (r==false) {  
                return false;  
            }
            else {
                return true;
            }

        }
    else {
        return true;
    }
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top