Using SharePoint with the SPServices library provides an excellent way of using jQuery to read from a SharePoint lists using client-side code. Using SharePoint with SPServices SPServices is a great library for use with SharePoint. I’ll show you a quick … Continue reading →
Every now and then I need to update some jQuery on our SharePoint site. But I do it so infrequently that I usually forget how to edit form templates using SharePoint designer! You see, in SharePoint Designer i can select … Continue reading →
I’m using modal dialog boxes (Fancybox) in my jQuery project, and I didn’t want the usual SharePoint ribbon header to appear in these. The simple solution was to hide the ribbon controls in SharePoint 2013 using the following jQuery: $(document).ready(function … Continue reading →
In my SharePoint site I use modal dialog boxes (Fancybox, actually) to display content. In one of these dialog boxes is a PeopleEditor SharePoint control which (when you browse for a person) opens up another dialog box! Unfortunately this dialog … Continue reading →
I’ve got a few lightboxes in my SharePoint 2013 Web Application, and one of the pages I need to launch in a lightbox iframe contains Plupload. When I clicked on the link to launch the lightbox, nothing appeared in Chrome … Continue reading →
This is a quick example of parsing a SharePoint Lookup field using SPFieldLookupValue. As we know, SharePoint lookup fields are usually formed as such: [Lookup ID];#[Lookup Value] Rather than manually parsing this result (by perhaps splitting the returned string by … Continue reading →
This example shows how we can find a users SharePoint group membership by utilising SPGroupCollection. Remember that if you are running your code with SPSecurity.RunWithElevatedPrivileges, you should set the SPUser value OUTSIDE of this elevated code otherwise it will not work … Continue reading →
You may wish to consult this article first to see how to add a reference to the SharePoint library. This post describes reading from a SharePoint List using ASP.Net. This example shows how we can define a CAML query to … Continue reading →
This post describes how to insert into a SharePoint list using ASP.Net. First add a reference to the SharePoint DLL for your specific version. I’m working with SharePoint 2010, and the DLL can be found in the following location: C:\Program … Continue reading →