Office 365 Distilled EP52: The Big Three Adoption Propositions

You might think this episode is all about Formula 1, but it is actually all about adoption; more specific about the biggest 3 adoption propositions that we can think of in Microsoft 365. This means, going through the core applications (Outlook, SharePoint and Teams) and talking about what feature gives us the best value! Adoption …


Fixing select/input switch field behavior on more/less then 20 items on SharePoint 2010 dropdowns via Jquery or customized pages

Users were complaining about a slow lookupfield (shown as dropdowns) that contained over 2000 items. It was not only loading slow, they had issues with typing in values as well. I asked this question at the msdn forum and had some great responses. Jeroen Van Bastelaere told me that SP2010 dropdowns had a special behavior: …


efficient way to get querystring variables via javascript

Just used this great snippet in a jquery script at a customer: http://snipplr.com/view/799/get-url-variables/ This will get you the value that is in the querystring for that variable. Example: www.balestra.be?name=marijn If I write: Then I will get a messagebox popped up that displays “marijn” This comes in handy when you have to get a few variables …


Javascript on sharepoint page load: spBodyOnLoadFunctionNames.push( ) vs image onload( )

So you want to start customizing a SharePoint page? Let’s say, you want to load or hide something in a page. First steps include adding a content-editor-webpart on the page and adding some code on the source editor: SharePoint provides the “_spBodyOnLoadFunctionNames” array. When the body is loaded, the onload event handler executes each function …


Awarded with the Community Contributor award for 2011

Just got this mail in my inbox: Congratulations! We’re pleased to inform you that your contributions to Microsoft online technical communities have been recognized with the Microsoft Community Contributor Award. The Microsoft Community Contributor Award is reserved for participants who have made notable contributions in Microsoft online community forums such as TechNet, MSDN and Answers. …


Add a redirect to SharePoint new item form with datasource in site pages

I have created a new SP2010 aspx page for users to create a new request. When they have filled in the form they should be a redirect to a “thank you” page. I did this via SPD2010, creating a new page with a datasource to the “new” functionality of the request list. So I got …


JavaScript to hide SharePoint title column fields in list view

Sometimes you want to show a list on your homepage. You can do that by adding the webpart to the page. But what is also does is show the headers: the column titles. For example, if you add the announcements with some own field, you don’t need those headers. You could create a walkaround by …


Create document sets and documents via workflow from a list (without code)

At a customer, we had to move a legacy VB application to SP2010. The application existed of: – dossiers with about 30 metadata fields – items in those dossier, some have attachments with about 10 metadata There are about 20K dossiers, we had to migrate the data and make something in order to do archivation. …


how to get user details from your current user in SharePoint via jquery and webservices

This time we are going to look at SPServices, a great codeplex project, so freely available. The SPServices can be described as a jQuery library which abstracts SharePoint’s Web Services and makes them easier to use. To demonstrate that, let us look at the SPCurrentUser function. This SPGetCurrentUser function does an AJAX call to grab …


SharePoint 2010 date key filters are 1 day off

Strange thing on the SharePoint sites here. I am working with a long list of items and I am using key filters (metadata navigation functionality). When I search for all items with creation date on (for example, DDMMYYYY) 05/05/2010, it will show me all items with creation date 04/05/2010. So my key filters are 1 …


Build a url in xsl for a dynamic link in SharePoint results page

If you create a custom results page for your SharePoint, you may want to create a custom url. For example, if you have a specific page that displays information and you want the users to go there via the search. Or, if you want to link to the dispform for a folder instead of the …