Quantcast
Channel: jQuery Library for SharePoint Web Services
Viewing all articles
Browse latest Browse all 6517

New Post: GetAttachmentCollection Example

$
0
0

Of all of the times I've used this library, I don't think I've ever used this operation.  Here's an example for future usage:

	$().SPServices({
		operation: "GetAttachmentCollection",
		listName: "MahAwesomeListName",
		ID: id,
		completefunc: function( xData, Status ) {
			//console.log( Status );
			//console.log( xData.responseText );
		
			var output = ""
			
			;
			
			//debugger;
			
			$( xData.responseXML ).find("Attachments > Attachment").each(function( i, el ) {
				var $node = $(this),
					filePath = $node.text(),
					arrString = filePath.split("/"),
					fileName = arrString[ arrString.length - 1 ]
				;
				
				output += "<a href='" + filePath + "' target='_blank'>" + fileName + "</a><br />";
			});
			
			$("#drop-zone").html( output );
		}
	});

Cheers,
Matthew


Viewing all articles
Browse latest Browse all 6517

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>