SharePoint Online: Video Streaming
The following video demonstrates how to add streaming video to a SharePoint Online private site collection. Please note: this will not work on a SharePoint Online public website
View ArticleHow do I: Create a simple form to collect data in SharePoint 2010
This was done using a SharePoint Online site. There is an important piece of JavaScript code that allows you to re-direct your page once the “Save” button is click: <input type=”button”...
View ArticleHow do I: Create a FAQ page in SharePoint 2010
This was done on a SharePoint Online site.
View ArticleWhy can’t I access the column in my SharePoint list programatically?
The answer might be simple. The first time a column is created and you title it “Column1″ the database records that. If you (or someone else) later changes the column title to “Column2″ your...
View ArticleUsing jQuery to hide form elements based on checkbox value
Let’s say you wanted to hide/show a specific textbox only if a specific checkbox has been selected. You can use jQuery to do this via SharePoint Designer 2010 How can I validate a textbox using the...
View ArticleHiding/Showing InfoPath 2010 form element using jQuery
Get the code / Look for the highlight area InfoPath 2010 is a great tool. However, while building forms in InfoPath it’s only a matter of time when you have a user requirment that InfoPath alone simply...
View ArticleHow do I: Implement $().SPServices.SPCascadeDropdowns
Documentation for $().SPServices.SPCascadeDropdowns In my opinion, the tricky part to this is the third list “CascadeExample”. It was unclear to me after reading the documentation on the SPServices...
View ArticleHow do I: Set the ID attribute of a table row using jQuery and SharePoint...
While customizing an “add new item” form, you might find yourself needing to manipulate form elements via jQuery. However, before you can do that you must and an #id or .class to the elements in...
View ArticleHow do I: Add new values to a drop-down list from the new item form
If you want to have the ability to add new values from new form item you have two options. (that I know of) First you could use $().SPServices.SPLookupAddNew. Or, you could use the technique I have...
View ArticleSP.UI.ModalDialog.showModalDialog with margin and notification
If you ever add HTML to a SharePoint modal dialog box you might notice that adding a left-margin is also necessary. Remember, the HTML option uses DOM not a string. Style margin Property Get the code...
View ArticleSP.ClientContext.get_current is null or not an object
One of the reasons you might be getting this error is because you are trying to use the client object model without the sp.js file being loaded. Other post regarding errors you might be getting related...
View ArticleEnable Mobile Browser View for SharePoint Online public site
So you upgraded to SharePoint Online 2013. If you are like me, you might have been looking on your SharePoint Online public site for the mobile “Contemporary view“. However, you will NOT find it....
View ArticleGetting the logged on user name using the client object model
If you want to use the SharePoint 2010 client object model you can use the code below: ExecuteOrDelayUntilScriptLoaded(getWebUserData, “sp.js“); var context = null; var web = null; var...
View ArticleSharePoint Designer 2013 workflow action “Call HTTP Web Service”
Part 1 In this first section we will start creating our SharePoint Designer 2013 workflow. Our focus here is the “Call HTTP Web Service” action. We will be using and Ebay web service for this example....
View ArticleCustomizing the Refinement Panel web part in SharePoint 2010
Part 1: Summary: We created our own results page: Results.aspx We can modify the “Refinement Panel Web Part” only if we can edit the create a new .aspx results page and change the “Search Setting” to...
View ArticleSharePoint 2013 web services: View JSON results via Firefox
If you are working with SharePoint Designer 2013 workflow action “Call HTTP Web Service” then you might know that return results in JSON via accept header is important. But what if you want to view the...
View ArticleAdd a column to a Enterprise Wiki Page Layout in SharePoint 2010
After you have create your Enterprise Wiki, you might have a need to add additional fields. For instance, your client might want a summary field on the wiki page. In this case you will need to modify...
View Article