Listing Marked Documents from Multiple Document Libraries – Part 2

In Part 1, I retrieved a list of Document Library lists that contained files and started building the display. Now, I need to get the marked documents and display them for each Document Library. Since I created the array libraryList as part of the first steps, I can now loop through this list and get each set of files. Now, make sure that you set the REST API “async” option to false, because you don’t want things to happen out of sequence and end up with nothing displayed. The call to each of the Document Library lists will have a Continue reading Listing Marked Documents from Multiple Document Libraries – Part 2

Listing Marked Documents from Multiple Document Libraries – Part 1

I had a small project at work to list marked documents a SharePoint site Page. The documents would be part of a Document Library and they are marked using a choice option, which means they need to be grouped by each of the options in the list. And, to top things off, there are multiple Document Library lists. And, to make things harder, the choice field has a different name in each of the Document Library list. At first, I thought this might be a hard little project, but it turned out easier to do than expected. I am using Continue reading Listing Marked Documents from Multiple Document Libraries – Part 1

Meetup for BlackBerry 4.2.6 and deleteResource

Meetup for BlackBerry 10 by DeanLogic version 4.2.6 is now available for download. Unfortunatley, it doesn’t look like my change went through correctly and I noticed that I need to fix something that corresponds with that change. The change added was the ability to Delete (Leave) a Group. I had been playing around trying to get this to work on a previous release and I accidently left the menu option available. Also, I had a couple requests for the feature, so I thought I would give it another try. I still haven’t added Join Group due to the complexity of Continue reading Meetup for BlackBerry 4.2.6 and deleteResource

CopyTo List Attachment to Shared Documents

As part of one of my projects at work, I was tasked to modify a form for a list to have the Attachment moved to the Document Library. When the file is in the Document Library, I can then apply all sorts of change control and stuff to the document. Being new to playing around with jQuery and JSOM in SharePoint, I searched the web for an example on how to do this action. I found that there was a method called copyTo that would do what I needed. Great! Now how do I use it? I searched around and Continue reading CopyTo List Attachment to Shared Documents