Metro UI – SharePoint Masterpage for Sandbox Solutions

Just a quick note that i have updated and created a blue themed wsp which now works in a Sandbox Solution.

http://lifeinsharepoint.codeplex.com/releases/view/78033

Hope this helps some people.

Quick Tip – jQuery Collapsable WebParts for SharePoint 2010

jquery_collapse

Following on from the previous Quick Tip I have another cool little snippet of jQuery code to enable collapsable WebParts on SharePoint Pages.  Again like before the following code uses the OOTB v4.master so may not work if you have customised your design or used custom WebPart Control Adapters to change the formatting of WebParts.

So lets get started.  Below is the standard HTML format of how SharePoint renders a WebPart.  I have cut out unnecessary js that was in the actual source to make things cleaner.

<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
    <td id="MSOZoneCell_WebPartWPQ4" valign="top" class="s4-wpcell" onkeyup="WpKeyUp(event)" onmouseup="WpClick(event)">
        <table class="s4-wpTopTable" border="0" cellpadding="0" cellspacing="0" width="100%">
            <tr>
                <td>
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr class="ms-WPHeader">
                            <td align="left" class="ms-wpTdSpace"> </td>
                            <td title="Links - Use the Links list for links to Web pages that your team members will find interesting or useful." id="WebPartTitleWPQ4" class="ms-WPHeaderTd">
                                <h3 style="text-align:justify;" class="ms-standardheader ms-WPTitle">
                                    <a accesskey="W" href="/sites/test/Lists/Links"><nobr><span>Links</span><span id="WebPartCaptionWPQ4"></span></nobr></a>
                                </h3>
                            </td>
                            <td align="right" class="ms-WPHeaderTdMenu" onclick="OpenWebPartMenu('MSOMenu_WebPartMenu', this, 'WebPartWPQ4','False'); TrapMenuClick(event); return false;"><span style="display:none;"></span><div class="ms-WPMenuDiv" onmouseout="this.className='ms-WPMenuDiv'" onmouseover="this.className='ms-WPMenuDivHover'"><a onclick="OpenWebPartMenuFromLink('MSOMenu_WebPartMenu', this, 'WebPartWPQ4','False'); return false;" id="WebPartWPQ4_MenuLink" onkeydown="WebPartMenuKeyboardClick(document.getElementById('WebPartWPQ4_MenuLink'), 13, 40, event)" href="#" title="Links Web Part Menu" class="ms-wpselectlink" onblur="UpdateWebPartMenuFocus(this, 'ms-wpselectlink', 'ms-WPEditText');" onfocus="UpdateWebPartMenuFocus(this, 'ms-wpselectlinkfocus', 'ms-WPEditTextVisible');" menuid="MSOMenu_WebPartMenu"><img class="ms-WPHeaderMenuImg" src="/_layouts/images/wpmenuarrow.png" alt="Links Web Part Menu" style="border-width:0px;" /></a></div></td><td class="ms-WPHeaderTdSelection"><span class="ms-WPHeaderTdSelSpan"><input type="checkbox" id="SelectionCbxWebPartWPQ4" class="ms-WPHeaderCbxHidden" title="Select or deselect Links Web Part" onblur="this.className='ms-WPHeaderCbxHidden'" onfocus="this.className='ms-WPHeaderCbxVisible'" onkeyup="WpCbxKeyHandler(event);" onmouseup="WpCbxSelect(event); return false;" onclick="TrapMenuClick(event); return false;" /></span></td><td align="left" class="ms-wpTdSpace"> </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td class="" valign="top">
                    //CONTENT WILL BE IN HERE
                </td>
            </tr>
        </table>
    </td>
</tr>
</table>

As you can see there are alot of tables which are nested.  The table that we are interested in is this one:

        <table class="s4-wpTopTable" border="0" cellpadding="0" cellspacing="0" width="100%">

This table has two rows.  The First row contains the header of the webpart which is where we are going to put our minimise handler, and the second row is the section we are going to “hide” in Javascript.  So firstly we need to inject our minimise handler into the WebPart titles <h3> tag.  To do this we need a single line of jQuery.

$('.s4-wpTopTable').find('tr:first h3').append('<a class=\'handler\' style=\'float:right\'><img src=\'/_layouts/images/collapse.gif\'/></a>');

What this line does is firstly gets all the .s4-wpTopTable instances and within that element gets the h3 tag from within the first TR.  It then appends a custom div with some inline style to float it right with a class of “min”.  We have also used some of SharePoints built in images to reduce the number of assets required.

The next step is to now hook into the new handler that we have created above. I will create a couple of new variables to store the images that we are going to use for the collapse and expand buttons.

        var Collapse = "/_layouts/images/collapse.gif";
        var Expand = "/_layouts/images/expand.gif";
    $('.handler').click(function(){
        var img = $(this).children();
        $(this).closest('.s4-wpTopTable').find('tr:first').next().toggle().is(":visible") ? img.attr('src',Collapse) : img.attr('src',Expand );
    });

As you can see above i have hooked into our dynamically created handler with the class “.handler”.  When i click the item it will trigger the function and perform the following “if ” statement which i have compressed to a single line.  First i find the closest .s4-wpTopTable element which will always be the parent of the handler.  Then i want to get the first TR for that table and then go to the next row and toggle the state to be visible / hidden.  I then check the status and if it is visible then show the collapse image otherwise show the expand one.  Simple as that.

Here is the full script:

<script type="text/javascript" src="http://ajax.Microsoft.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
jQuery(function($) {
    $('.s4-wpTopTable').find('tr:first h3').append('<a class=\'min\' style=\'float:right\'><img src=\'/_layouts/images/collapse.gif\'/></a>');
        var Collapse = "/_layouts/images/collapse.gif";
        var Expand = "/_layouts/images/expand.gif";
    $('.min').click(function(){
        var img = $(this).children();
        $(this).closest('.s4-wpTopTable').find('tr:first').next().toggle().is(":visible") ? img.attr('src',Collapse) : img.attr('src',Expand );
    });
});
</script>

Hope this helps people to extend their SharePoint environments.  When i have written the next stage of the drag and drop piece which covers saving the WebPart states then I will update this post to include that functionality.

Chris

Quick Tip – jQuery Accordion for SharePoint 2010 Quick Launch

accordion_header

I thought that i would share a quick piece of code that you can use on your SharePoint sites to change the Quicklaunch from a standard view to an “accordion” style version using jQuery.  The following code uses the OOTB v4.master so may not work if you have customised your design. (Changes to selectors should be all that would be required to get it working with your own design)

<script type="text/javascript" src="http://ajax.Microsoft.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
jQuery(function($) {
    $('.s4-ql li ul').hide();
    $('.s4-ql ul li').hover(function() {
        $(this).find('a:first').next().slideToggle();
    }, function() {
        $(this).find('a:first').next().slideToggle();
    }).find('ul').each(function(index) {
        var $this = $(this);
        $this.parent().find('a:first .menu-item-text').append(['<span style=\'float:right;font-size:0.8em;\'>(', $this.children().length, ')</span>'].join(''));
    });
});
</script>

As you can see the jQuery is pretty simple.  Firstly we need to get a reference to the jQuery library. (we have the version hosted with Microsoft.  If you have a server which does not have internet access, you will need to download and reference a locally stored version of the library).

<script type="text/javascript" src="http://ajax.Microsoft.com/ajax/jQuery/jquery-1.7.1.min.js"></script>

Next is to hide all of the children of the quicklaunch items so we are left with just the headings.

    $('.s4-ql li ul').hide();

The Next step is to capture when the user hovers over the headings.  When they do this they need to find the first anchor tag in the current <li> element and for the next element in the DOM (which is the UL) perform a slide toggle which will animate the accordion.  When you hover the mouse off the item the alternate function is run the same code again which will reverse the accordion.

    $('.s4-ql ul li').hover(function() {
        $(this).find('a:first').next().slideToggle();
    }, function() {
        $(this).find('a:first').next().slideToggle();
    })

The final step is to add a count of the number of children into each of the headings.  This will provide the end user with an indicator telling them an item as some hidden items.  So with the current child <ul> we need to get the parent item (the heading) and get the text inside the anchor tag.  To this anchor tag we append the number of items using the $this.children().length code block.

.find('ul').each(function(index) {
        var $this = $(this);
        $this.parent().find('a:first .menu-item-text').append(['<span style=\'float:right;font-size:0.8em;\'>(', $this.children().length, ')</span>'].join(''));
    });

Finally you need to insert this into your masterpage using SharePoint Designer and thats it.  I hope this quick tip was useful.  I will hopefully be adding some more soon.  Please let me know how you get on.

Metro UI – SharePoint 2010 Masterpage & Solution : UPDATED

metroheader

So today i have released onto Codeplex a SharePoint 2010 Masterpage design which is inspired from the Metro UI of Windows 8.  The design has the following features:

  • Liquid Layout
  • Cufon Integration
  • Jquery Accordion Quicklaunch with Sub Item Count
  • Full Solution with single Site Feature to activate branding (Thanks CKS:Dev Team)
  • Custom Site Settings Action to choose one of three colour schemes (Green, Blue & Red)

If you would please leave me comments be it positive or negative they are all welcome.  I hope you enjoy and if you come across any bugs please let me know and i can fix them.

Download

To download the wsp please click here and get it from our CodePlex Site.  Enjoy :)

 

iGoogle UI for SharePoint – Part Two : Dragging, Dropping, Sorting and Collapsing

iGoogle-Part-Two

Series Content

  1.     Part One – Overview, Concept,  HTML Structure & jQuery Basics
  2.     Part Two – Dragging, Dropping,  Sorting and Collapsing – Current Article
  3.     Part Three – Saving WebPart states using Cookies
  4.     Part Four – Control Adapters
  5.     Part Five – SharePoint 2010 Integration
  6.     Part Six – Bringing it all together
  7.     Bonus – Saving WebPart States using the Client Object Model

Overview

In Part Two we will take the basic html from part one and using some Javascript magic make it into a more compelling and interactive page.  Firstly we will identify the various techniques individually and then put them all together at the end of this post.

Javascript

As mentioned in the previous post, a decision was made to use the jQuery Library with the jQuery UI abstraction layer to provide the functionality for our “iGoogle” interface.  It is using this library that will speed up development and keep everything cross-browser capable.  In our solution we will be using the following effects / methods from the jQuery & jQuery UI library.

We will begin by modifying our script.js file to include a new global object called “iSharePoint“.  This will be our namespace that we will use to contain all of the functionality for our interface.  Within this object we will create a set of functionality that uses the libraries and methods described above.

    var iSharePoint = {
        settings : {
           // All settings will be defined here
        },
        init : function(){
            // This init function kicks off the whole thing
        }
    };

This method will be called from the jQuery Document Ready function which will ensure all the items are ready to be manipulated before we do anything.

jQuery(document).ready(function(){
		iSharePoint.init();
});

iSharePoint Settings

The settings object we have defined will contain all of the global settings we require to make this item as functional as possible.

    settings : {
        columns : '.column',
	zones : '',
        widgetSelector: '.widget',
        handleSelector: '.widget-head',
        contentSelector: '.widget-content',
	editSelector: '.widget-edit',
	toolboxSelector: '#toolbox',
	widgetPlaceholder: 'widget-placeholder'
    }

There are quite a few settings which I will now explain each in detail:

  • columns – this is the class selector for each of the columns that we would like to be sortable and drag and drop between.
  • zones – these are the unique ID’s of each of the columns. (This is blank because we are going to dynamically populate this based on the DOM contents)
  • widgetSelector – this is the wrapper div of each of our draggable widgets.
  • handleSelector – this is the grab handle class for the div we will use to drag the widget around the page
  • contentSelector – this defines the class of the widget content wrapper which is used for the collapsing and expanding functionality.
  • editSelector – this defines the class of the edit panel wrapper which is used to contain the edit functions.
  • toolboxSelector – this defines the footer toolbox where unwanted or unused widgets can sit out of the way.
  • widgetPlaceholder – this is the name of the class that is assigned to the drag target div so you know where your div will end up.

Bring the Widgets to life

The next part is a little more complicated but we will take each part individually.  We now need to add another method to our global object that we will call “buttonFunctions

	buttonFunctions : function() {
             //All functions for the buttons will belong in this method
        });

To this method we will add first create a new reference to our global object.  This is useful if multiple instances are required as well as if you ever need to rename the global object.  We will then need to create a new variable so we can reference jQuery without using the “$” symbol in noConflict() mode as that symbol it is used by SharePoint’s internal js files and can cause clashes. (Thanks to Chris O’Brien for explaining this here)  We will then create a local reference to the settings only as a shortcut so you don’t need to type “this.settings” every time.

	buttonFunctions : function() {
	    var iSharePoint = this,
            $j = jQuery.noConflict(),
            settings = this.settings;
        });

The next step is to define our button click handlers so that each widget has independent click events that can be raised.  One thing to be careful of is what is known as “Event Bubbling“.  This is when, upon clicking on an element in the DOM the event will bubble upwards through to the highest level element which an event the same as the ones you have recently triggered.  To prevent this from happening we need to add a line of code (e.stopPropagation();) which will prevent this from happening.  Below is a skeleton framework of the button click handlers.

	buttonFunctions : function() {
	        var iSharePoint = this,
            $j = jQuery.noConflict(),
            settings = this.settings;

			$j('.slide').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				//To Do - Slide toolbox down
				alert('Toolbox to be expanded');
			// Return false, prevent default action:
			return false;
			}) 

			$j('.reset').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				//To Do - Reset layout
				alert('Reset Layout');
			// Return false, prevent default action:
			return false;
			}) 

                        $j('.edit').mousedown(function (e) {
                               e.stopPropagation();    
                        }).click(function () {
                               //To Do - What to do when clicked first time
                               alert('Toolbox Toggle');
                               return false;
                        })		

			// Create new anchor element with class of 'remove':
			$j('.remove').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				//To Do - Code to remove widget and place in toolbox
				alert('Remove Widget from page');
			// Return false, prevent default action:
			return false;
			})  	

			$j('.collapse').mousedown(function (e) {
				e.stopPropagation();
			}).click(function () {
				//To Do - What to do when clicked first time
				alert('Collapse Toggle');
				return false;
			})
	}

As you can see there is quite alot of framework code added to contain the button functionality.

Demo

You can see and example of where we are currently by clicking here for a demo

Button Functions in More Detail

We will now flesh out each of the functions in the method to provide them with some actual functionality starting with the widget toolbox slider at the bottom.

			$j('.slide').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				$j(settings.toolboxSelector).slideToggle("slow");
			// Return false, prevent default action:
			return false;
			})

As you can see we have changed line 5 from the alert to

$j(settings.toolboxSelector).slideToggle("slow");

This simple line will enable use to open and close the toolbox at the bottom.  Nice and simple.

The reset button will not be functional at this point as in future posts we will be resetting the cookies and refreshing the page.  At this stage we will simply ask for confirmation of the action and then refresh the page.

 

			$j('.reset').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				if(confirm('Are you sure you want to reset your layout?')) {
				location.reload();
				}
			// Return false, prevent default action:
			return false;
			})

We have again removed the alert placeholder from the framework above and instead added three lines of code 5-7 which will ask the user to confirm that they want to reset and if they click yes then the page will reload otherwise nothing will happen.  Two down, Three to go.

Next we will add the toggle functionality to the edit toolbar.  This again is another single line but with some nested functions which will be explained.

			$j('.edit').mousedown(function (e) {
				e.stopPropagation();
			}).click(function () {
				//To Do - What to do when clicked first time
				$j(this).parents(settings.widgetSelector).find(settings.editSelector).slideToggle("slow");
				return false;
			})

As you can see we have once again replaced the alert placeholder with the single line.  If we look at the html of a widget we can explain how this works.

			<div class='widget' id='2'>
				<div class="widget-head">
					<a class='collapse'>collapse</a>
					<h3>Widget title 2</h3>
					<a class='remove'>remove</a>
					<a class='edit'>edit</a>
				</div>
				<div class="widget-edit">
					<ul class='colors'>
						<li class='red'></li>
						<li class='blue'></li>
						<li class='green'></li>
						<li class='purple'></li>
						<li class='orange'></li>
					</ul>
					<div class='clearfix'></div>
				</div>
				<div class="widget-content">
					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>
				</div>
			</div>

What we are trying to do is traverse the DOM to open and close the widget-edit div.  Our starting location is <a class=’edit’>edit</a> which is the first part of the code $j(this).  We then want to get the reference to the current buttons parent only, with a selector of settings.widgetSelector (which in our settings is set to “.widget”).  We then want to find the widget-edit div which is this part of the code find(settings.editSelector) and then we finally ask the code to perform a slideToggle(“slow”).  The slow property creates a nice visible slide.  Alternate values for this can be fast or to not provide a property at all.

So..Whats next.  The next item on the list is the remove functionality.  What we want this to do is remove the widget from the current div that it sits in and place it in the toolbox div.  This div has some specific CSS attached to it which will collapse the whole widget and just show the title bar with no buttons.

			$j('.remove').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				// Confirm action - make sure that the user is sure:
				if(confirm('Please confirm the removal of the widget.  This can be restored from the widget toolbox at the bottom of the screen.')) {
					$j(this).parents(settings.widgetSelector).appendTo(settings.toolboxSelector);
				}
			});

This time we are using a similar method to the previous function by traversing the DOM to find the current buttons parent.  However this time we want to take this whole DIV and using the appendTo() method we can attach it to the toolboxSelector div defined in the settings.  Simple!

The final one to do is the collapse button.  This once again is very similar to the edit button but with an extra line afterwards.

			$j('.collapse').mousedown(function (e) {
				e.stopPropagation();
			}).click(function () {
				$j(this).parents(settings.widgetSelector).find(settings.contentSelector).slideToggle("slow");
				$j(this).parents(settings.widgetSelector).toggleClass("minimised");
				return false;
			})

Once again you can see that we are getting the reference to the parent and then this time finding the contentSelector to perform the slide toggle on.  Afterwards we are once again getting the parent widget wrapper but this time we are now adding a class via the toggleClass method.  We need to do this so in future posts when we are saving the various states we can easily identify which widgets are minimised.

Thats is it for the button configuration.  We can now delete, open the edit box and toolbox, we can delete a widget from the main view and we can reset the page and force a page refresh.

Demo

To view a demo of where we are so far click here

Adding Drag and Drop functionality

So next up is the nicest piece which is the ability to drag and drop widgets between the columns.  Firstly like we did for the buttons we are going to add another method to our global object that we will call “makeSortable”.  Once again like above we will also add the iSharePoint reference, noConflict and settings references to the top.

	makeSortable: function() {
	    var iSharePoint = this,
            $j = jQuery.noConflict(),
            settings = this.settings;
        });

To this function we will now add a reference to the jQuery sortable function.  This function takes a set of parameters which will be explained below the code sample.

			$j(settings.columns).sortable({
				connectWith: $j(settings.columns),
				handle: settings.handleSelector,
				cursor: 'move',
				revert: true,
				placeholder: settings.widgetPlaceholder,
				forcePlaceholderSize: true,
				delay: 100,
				opacity: 0.8,
				start: function (event, ui) {
					$j(settings.columns).css("background-color","#e7e5e5");
				},
				stop: function (event, ui) {
					$j(settings.columns).css("background-color","transparent");
					$j(settings.toolboxSelector).css("background-color","#fff");
				}
			})
  • Line 1 : take the reference of the columns from the settings and runs the sortable method on it.
  • Line 2 : this line enables us to connect all columns together so you are able to drag and drop between all instances
  • Line 3 : defines the element that you use to drag and drop
  • Line 4 : defines what the cursor looks like when dragging
  • Line 5 : If set to true, the item will be reverted to its new DOM position with a smooth animation.
  • Line 6 : The class that gets applied to the otherwise white space when you are dragging.
  • Line 7: Self explanitory, forces the placeholder to have a size.
  • Line 8: Time in milliseconds to define when the sorting should start.
  • Line 9: Opacity of the element currently being dragged.

The following lines 10 – 12 and 13-16 are two functions that get run at the start and end fo the dragging process.  The start function is used to change the colour of the columns so that they are highlighted when you drag so you know what the boundaries are.  The stop function reverses this and resets the toolbox and columns back to their previous state.  In future posts we will be using the stop function to save the state of the widgets.

Notifications

You may have noticed by now that there is a div called “Badge” which is displayed in the HTML as a red circle.  This does indeed have a purpose to display the number of items currently in the toolbox.  To do this we once again need to add alittle piece of jQuery magic to bring it all together.

Firstly we need to create a global function which is not in the iSharePoint object.

function updateBadge()
{
            $j = jQuery.noConflict(),
			$j(iSharePoint.settings.badgeSelector).text($j(iSharePoint.settings.toolboxSelector + " > " + iSharePoint.settings.widgetSelector).size());
}

What this does is count the number of widget divs that are in the toolbox at the bottom using the .Size() method.  The references to the divs are taken from the iSharePoint settings.  All that is needed to do now is to add the updateBadge(); to the ready function.

jQuery(document).ready(function(){
		iSharePoint.init();
		updateBadge();
});

Then add it to the .remove click event.

			// Create new anchor element with class of 'remove':
			$j('.remove').mousedown(function (e) {
				// Stop event bubbling:
				e.stopPropagation();
			}).click(function () {
				// Confirm action - make sure that the user is sure:
				if(confirm('Please confirm the removal of the widget.  This can be restored from the widget toolbox at the bottom of the screen.')) {
					$j(this).parents(settings.widgetSelector).appendTo(settings.toolboxSelector);
					updateBadge();
				}
			});

And then finally add it to the stop event from the sortable method.

				stop: function (event, ui) {
					$j(settings.columns).css("background-color","transparent");
					$j(settings.toolboxSelector).css("background-color","#fff");
					updateBadge();
				}

Colour Picker – Edit toolbar

The final piece of this post is to enable the colour of the header to be changed using the toolbox.  To do this we need to add another function to the global iSharePoint object called activateColours which will be used to process the colours.

The Markup for the edit toolbox is as follows:

				<div class="widget-edit">
					<ul class='colors'>
						<li class='red'></li>
						<li class='blue'></li>
						<li class='green'></li>
						<li class='purple'></li>
						<li class='orange'></li>
					</ul>
					<div class='clearfix'></div>
				</div>

As you can see this is nothing different from previous code but as you can see there is an LI with a class of each of the colours that you would like to use.  You are also able to put hex colours into the class names and they will work just fine.  The code for the function is shown below:

	activateColours : function () {
		    var iSharePoint = this,
            $j = jQuery.noConflict(),
            settings = this.settings;

			$j('ul.colors li').each(function () {
				$j(this).css('backgroundColor',$j(this).attr('class'));
			});

			$j(settings.editSelector).each(function () {
				$j('ul.colors li',this).click(function () {
					$j(this).parents(settings.widgetSelector).find(settings.handleSelector).css('backgroundColor',$j(this).attr('class'));
				});
			});
	},

The first 4 lines should be nothing new as it is the same as previous functions.  The first loop goes through every unordered list on the page with a class of color and sets the background colour of the list item to what is in the class name.  Once all the items have their colour all we need to do is to attach a click handler to each of the list items themselves so they can control their parents header which is what the next loop then does.

Demo

So want to see the whole thing working?  Click here to see the final result of this quite epic blog post.

Summary

In this post we have outlined how to add the various functionality to our page using javascript and the jQuery Libraries.  Next time I will explain how to save the state of the page using Cookies.  I hope this post has been useful and please leave some comments about what you would like to see in future posts.

 

iGoogle UI for SharePoint – Part One : Overview, Concept, HTML Structure & Jquery Basics

iGoogle---Part-One

Series Content

  1.     Part One – Overview, Concept,  HTML Structure & jQuery Basics – Current Article
  2.     Part Two – Dragging, Dropping,  Sorting and Collapsing
  3.     Part Three – Saving WebPart states using Cookies
  4.     Part Four – Control Adapters
  5.     Part Five – SharePoint 2010 Integration
  6.     Part Six – Bringing it all together
  7.     Bonus – Saving WebPart States using the Client Object Model

Overview

This is the first in a series of posts which will explain how to create an iGoogle style interface for SharePoint 2010.  More and more clients are asking for an iGoogle or BBC Homepage style homepage for their intranets and out of the box in SharePoint 2010 there is no method to do this.  While you can drag and drop webparts in “Edit Mode” in a WebPart page, end user however is stuck on where to place their webparts on the page.  This series will aim to provide a mechanism where end users are able to take control of their page and make the SharePoint experience more personal.

There are many sites on the internet which have the ability to drag and drop components around the page and save their locations for your next visit.  Some of the most well known examples of this interface are:

iGoogle – http://www.google.com/ig?hl=

BBC Homepage – http://www.bbc.co.uk/

Both these sites give you the ability to drag and drop various widgets around the page.  You can also close widgets you do not want to see and minimise others to maximise space on the page.  This is the kind of interface that we are going to create for use in SharePoint using jQuery and some C# code.

The Plan

First, let’s list exactly what we’ll be creating here and what features it will have:

  • The interface will contain several widgets (WebParts).
  • Each widget can be collapsed and removed via controls on the page.
  • The widgets can be sorted into an unlimited number of columns.
  • WebParts will be have their rendering controlled via a control adapter which will modify their look and feel.
  • Widgets will have their location and states saved using cookies.
  • Creating a simple Visual Studio 2010 solution to deploy an example.

This post will provide an overview of what we are planning to build as well as getting some development environments configured for your own personal demos.

Getting Started

To get started in this post we will be creating a demo environment to ensure that the Javascript, HTML and CSS are all working together for use in future posts.  Initially we will not be touching SharePoint as it is not necessary at this stage.  Firstly we will need to create a base HTML template that will load a specific CSS stylesheet, images and Javascript libraries.

HTML

Below is the base HTML that will be used in our initial demo.  We have a wrapper div that surrounds three div columns called “Left”, “Middle” and “Right”.  Within each column is the widget HTML that will be used to wrap each WebPart.  Each widget has a wrapper div as well as a header and body content divs.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame. Remove this if you use the .htaccess -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

    <title>Life In SharePoint - Drag and Drop - Part One</title>

    <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />

</head>    

<body>

    <div class='wrapper'>

        <div class='column' id='left'>
            <div class='widget' id='111'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 1</h3>  
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>        
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>                
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>    
            <div class='widget' id='2'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 2</h3>  
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>        
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>           
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>            
        </div>        

        <div class='column' id='middle'>
            <div class='widget' id='3'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 3</h3>  
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>        
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>                
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>    
            <div class='widget' id='4'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 4</h3>  
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>        
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>                
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>            
        </div>        

        <div class='column' id='right'>
            <div class='widget' id='5'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 5</h3>  
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>                
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>                
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>    
            <div class='widget' id='6'>  
                <div>  
                    <a class='collapse'>collapse</a>
                    <h3>Widget title 6</h3>
                    <a class='remove'>remove</a>                    
                    <a class='edit'>edit</a>                        
                </div>  
                <div>
                    <ul class='colors'>
                        <li class='red'></li>
                        <li class='blue'></li>
                        <li class='green'></li>
                        <li class='purple'></li>
                        <li class='orange'></li>
                    </ul>
                    <div class='clearfix'></div>
                </div>
                <div>            
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse lorem orci, ornare at malesuada a, pulvinar lobortis neque. Integer et felis vel augue suscipit vestibulum id nec nulla.</p>  
                </div>
            </div>            
        </div>            
    </div>

    <div id='toolbox-wrapper'>
        <div id='toolbox-controls'>
            <div class='badge'></div>        
            <p><a href="#">Customize this page</a></p>    
            <p><a href="#">Reset Homepage</a></p>    
        </div>
        <div class='column' id='toolbox'>

        </div>
        <div style='clear:both;'></div>
    </div>

    <!-- Load the jQuery Libraries -->
    <script src="js/jquery-1.6.2.min.js" type="text/javascript"></script>
    <script src="js/jquery-ui-1.8.16.custom.min.js" type="text/javascript"></script>            
    <script type="text/javascript" src="js/jquery.cookie.js"></script>    

    <!-- script file to add your own JavaScript -->
    <script type="text/javascript" src="js/script.js"></script>    

</body>
</html>

As you can see the HTML is very simple but at the moment it will not look very attractive.  We have each of the widgets in their own Div and in the header we have three images which will be our “buttons” to control each widget.  On the left we have the collapse icon, next we have the edit icon and finally we have the remove icon.  Underneath the header we have an edit panel which will contain in this example some colour selections for the header bar which will be hidden in the css shown below.  So the next task is to now style the page and make it look neater.

CSS

The CSS is fairly simple and will be used for the SharePoint implementation.  We start with a global reset of the page to ensure that all DOM elements are reset.

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%;    font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {    display: block;} body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } 

/** Base Body Styles **/
body{ background:#ddd; color:#000; font:14px Arial, Helvetica, "Trebuchet MS", sans-serif;}

h1,h2,h3,h4,h5,h6{ font-weight:bold; }
h1{ font-size:30px;}
h2{ font-size:24px;}
h3{ font-size:18px;}
h4{ font-size:14px;}
h5{ font-size:12px;}
h6{ font-size:10px;}

a{ text-decoration:none; }
a:active, a:visited { color: #607890; }
a:hover { color: #036; }

.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
.wrapper
{
    clear:both;
}

.column
{
    float:left;
    width:300px;
    margin:10px;
    min-height:100px;
}

.column .widget {
    border:1px solid #ddd;
    margin:5px;
    width:288px;
    float:left;
    background-color:#fff;
}

.widget-head
{
    background-color:#60b51c;
    padding:5px;
    margin:5px 5px 5px 5px;
    height:20px;
}

.widget-head h3
{
    float:left;
    padding: 0 5px;
    color:#fff;    
    font-family: verdana, arial;
    font-weight:normal;
    font-size:1em;
}

.widget-head a.remove  {  
    float: right;  
    display: inline;  
    background: url(../images/controls.png) no-repeat -14px 0;  
    width: 14px;  
    height: 14px;  
    margin: 3px 4px 0px 0;  
    text-indent: -9999em;  
    outline: none;  
}  

.widget-head a.edit  {  
    float: right;  
    display: inline;  
    background: url(../images/controls.png) no-repeat -28px 0;  
    width: 14px;  
    height: 14px;  
    margin: 3px 4px 0px 0;  
    text-indent: -9999em;  
    outline: none;  
}  

.widget-head a.collapse  {  
    float: left;  
    display: inline;  
    background: url(../images/controls.png) no-repeat 0;  
    width: 14px;  
    height: 14px;  
    text-indent: -9999em;  
    margin: 3px 0 0px 4px;  
    outline: none;  
}
.widget-edit
{
    background-color:#efefef;
    border:1px solid #ddd;
    padding:5px;
    margin:0px 5px 5px 5px;
    display:none;
}
.widget-edit ul
{

}
.widget-edit ul.colors li {  
    width: 20px;  
    height: 20px;  
    border: 1px solid #EEE;  
    float: left;  
    display: inline;  
    margin: 0 5px 0 0;  
    cursor: pointer;  
    background-color:red;
}  

.widget-content
{

    padding:5px;
}
.widget-placeholder
{
    border:2px dashed #999;
    margin:5px;
    width:283px;
    float:left;
}

#toolbox-wrapper
{
    clear:both;    
    width:900px;
    margin:10px;
}

#toolbox-controls
{
    float:left;    
}

#toolbox
{
    background-color:#fff;
    padding:5px;
    width:930px;
    min-height:auto;
    margin:0px;
    margin-top:-1px;
    border:1px solid #ddd;
    float:left;
    position:relative;
}

#toolbox .widget
{
    float:left;
}

#toolbox .widget-content, #toolbox .widget-head .collapse, #toolbox .widget-head .remove, #toolbox .widget-head .edit
{
    display:none;
}

.badge {
    background-image: url('../images/badge.png');    
    width:20px;
    height:17px;
    float:right;
    color:#fff;
    padding-top:4px;
    text-align:center;
    font-size:10px;
    font-weight:bold;
    position:absolute;
    z-index:10;
    margin-left:-5px;
    font-family:verdana;
}

.slide {
                margin: 5px 5px 0px 0px;
                background-color:#fff;
                float:left;
                color:#fff;
                border:1px solid #ddd;
                position:relative;
}

.slide a, .slide a:active, .slide a:visited
{
                float:left;
                color:#fff;
                padding: 5px;    
                margin:5px;
                background-color:#187069;
}

.reset a, .reset a:active, .reset a:visited
{
                float:left;
                color:#fff;
                padding: 5px;    
                margin:5px;
                background-color:#082167;
}

.reset {
                margin: 5px 5px 0px 5px;
                background-color:#fff;
                float:left;
                color:#fff;
                border:1px solid #ddd;         
                position:relative;
}

The CSS helps style the page into three even columns and each of the widgets are styled with some buttons and styled headers.

Javascript

To provide the cool functionality, we will need to get the latest jQuery libraries and jQuery plugins. We will also create our own custom javascript file which we will be used to store our script.  The versions that we are using are below with links to download them.

Our own script.js file at this stage will contain only a couple of lines of code to test that jQuery is working;

jQuery(document).ready(function(){
	alert('Jquery is Working');
});

Images

The images for the close and collapse buttons we will use a simple sprite which has a close, max and min symbols on it.

Live Demo

A live demo of the base structure can be found here.

Summary

In this post we have outlined what we will be covering and have managed to get a demo environment working for the next phase.  We will add some jQuery functionality and make our page come alive in the next posts.  I hope this post has been useful and please leave some comments about what you would like to see in future posts.

 

SPLongOperation – Explained & Branded

Processing

Overview

When you are performing out of the box operations in SharePoint 2010 normally in Central Administration you will get a nice loading screen from SharePoint with an animated loading gif.  Have you ever wondered how you can use this in your own SharePoint Solution?  I have been doing SharePoint for a while now and only recently discovered the SPLongOperation method and it is quite the little gem.

SPLongOperation.BeginOperation beginOperation = null;

if (beginOperation == null)
{
    beginOperation = delegate(SPLongOperation longOperation)
    {
        // Long running code here ..

        longOperation.End("settings.aspx", SPRedirectFlags.RelativeToLayoutsPage, HttpContext.Current, null);
    };
}
SPLongOperation.Begin(beginOperation);

I have been writing a site provisioning service recently and have used the above code to help provide the end users some feedback while a new site collection is being created.  Only a couple of lines of code but it transformed the solution.

Want to change the text that is displayed in the loading screen?  No problem.

// BEGIN SPLongOperation
SPLongOperation longoperation = new SPLongOperation(this.Page);
longoperation.LeadingHTML = "<div><h2>This is the main Title</h2></div>";
longoperation.TrailingHTML = "<div><h3>This is the second line of text underneath</h3></div>";
longoperation.Begin();

// long running code here

// END SPLongOperation
longoperation.End(Customers.DefaultViewUrl, Microsoft.SharePoint.Utilities.SPRedirectFlags.Default, this.Context, "");

This will change the text on the page to reflect your specific requirements.

Branding the Loading Page

Do you want to match the loading page to your corporate colour scheme?  No problem.  Below is the output of the page in raw html.

<body onload="setGearPageFocus();gotoNextPage();" class="s4-simple-gearpage">
	<div id="GearPage">
		<div id="s4-simple-card" class="s4-simple-gearpage">
			<div id="s4-simple-card-content">
				<h1>
					<a id="gearsImageLink" href="javascript:;" onclick="hideGears();" title="This animation indicates the operation is in progress. Click to remove this animated image." >
						<img id="gearsImage" alt="This animation indicates the operation is in progress. Click to remove this animated image." src="/_layouts/images/gears_anv4.gif" style="width:24px; height:24px; font-size:0px;" align="absmiddle" />
					</a>
					Processing...
				</h1>
				<div>
					Life In SharePoint Long Operation Demo
				</div>
				<div>
					<br /><br />This is a custom long operation text
				</div>
			</div>
		</div>
	</div>
</body>

As you can see the markup is very simple.  What you can then do is create a new CSS style sheet and inject the reference to it in the LeadingHTML property as the property is not escaped.

longoperation.LeadingHTML = "<link rel='stylesheet' href='/_layouts/LifeInSharePoint/LongOperation.css' type='text/css'  />Life In SharePoint Long Operation Demo";

This will then enable you to customize the page as you need to changing background colours, fonts images etc.  This is the kind of result that you will get.

Do download a working solution with branding included please use the link below.

LISP.LongOperationDemo.zip

Twitter Rollup Webpart

twitterrollup

Today i am releasing the beta version of my Twitter Rollup Webpart.  Do you have a favorite Celebrity or user / group that you enjoy following via twitter.  Now you can surface multiple twitter accounts into a single webpart and utilizing Jquery Accordion you can view the one you are most interested in and collapse the rest.

The webpart currently uses twitters json service to retrieve the values it needs to display the tweets.  If you have any suggestions, problems or praise please let me know either via a comment on this post or email me using the contact page.

Codeplex Link : http://lifeinsharepoint.codeplex.com/releases/view/48201

Chris

SPTwitter – Internal Twitter Application for Teams

SPTwitter

I have been looking around the web at new applications and came accross the TeamTalk for SharePoint 2010 by ZevenSeas.  They released a no code (server code) site template for internal twitter team talks.  I thought that the concepts was fantastic and simple to implement, so i decided to create my own version using Visual Studio 2010 and Utilise SharePoint 2010′s new Sandbox Solutions.

My Solution which is now on the LifeInSharePoint Codeplex page is a sandbox solution which deploys content types, list definitions, and contains three webparts which you can place anywhere on the page / site.  The Solution is designed so you can install the solution on multiple Webs and they will work individually.

The release at the moment is a beta release and any comments, additions and recommendations would be fantastic.  I will be implementing a “Re-tweeting” functionality as well as a SharePoint Server version which links in with user profiles for a more enhanced experience.  Like i said, its still work in progress, but please feel free to try it out.

Chris

Downloads

Direct WSP Download Link : http://lifeinsharepoint.codeplex.com/releases/view/47786

Update: Now Includes webpart fix and Re-Tweets

Visual Studio 2010 – SharePoint (There are no Content Types in the Project)

I came across this error when trying to create a new list definition based on a content type that i have defined in my project.

I was so confused as to why this suddenly started happening, i thought i may have been when i placed my solution into source control, however after 5 hours of testing, re-writing the code again thinking that my project was broken it suddenly clicked what had happened.  Basically you cannot place a SharePoint Project into a Solution Folder.  Doing this causes Visual Studio to loose its ability to locate your SPI’s in your project.  Removing the project from the folder and back into the root of the solution fixed the problem.

I hope that this helps people save many hours of lost time like i did.

Chris