Microsoft Guides: Capacity management and sizing for SharePoint & Project Server 2010 http://technet.microsoft.com/en-us/library/cc261700(office.14).aspx Software Boundaries and Limitations for SharePoint & Project Server 2010: http://technet...
Something I always forget and scramble around to find: <xsl:template name="Debug" match="Row[@Style='Debug']" mode="itemstyle"> <xsl:for-each select="@*">...
As per my previous post, in my current project we are starting to migrate the whole solution to live. The project I am working on is a global solution with locations in UK, USA, India, China + others. As a result of this, like many global projects...
So it has been a while since I have posted anything on the blog. As I am sure many of you can relate, there comes a time in all projects when you have to concentrate solely on them to ensure that all factors play out as expected. One of those times...
So, it’s the weekend and I have decided to build myself a SharePoint 2010 / Project Server 2010 development environment so I can play with some ideas at home as well as update my CodePlex projects. Now in MOSS 2007 you used to be able to create a server...
A common thing I do for most clients is to create a unique alphanumeric ID that is consistent in length with pre-filled zeros. Risk list alphanumeric ID example: RSK0001 However, as has been documented many times (link); you cannot use the ID column of...
Many project managers like to do risk analysis in terms of probability and impact, ultimately creating a heat map when data is rolled up at the project or programme level. Further information about the methodology can be found here: http://www.expertprogrammanagement...
Posted to
Gile's SharePoint Shenanigans
by
Giles' SharePoint Shenanigans
on
03-09-2011
Filed under:
Filed under: Work, SPF 2010, JavaScript, WSS 3.0, MOSS 2007, Project Server 2010, SharePoint 2010, SharePoint, Project Server 2007, Calculated Column, EPM, JQuery
Just a reminder for me really… At a client at the moment who wants to put the date in list web parts in the following format: dd-MMM-yyyy. I found the following article suggesting using the TEXT function in a Calculated Column http://www.sharepointusecases...
For a completely different client who is using SharePoint 2010 for their company intranet we needed to implemented a UI web part which allowed end users to click on keywords which would then pre-filter search. Keywords were entered in using the new Managed...
So the first phase of the project I have been on for the last year is starting to move into the closing phases. The information architecture is in place, most of the custom development is complete and mapped to the project lifecycle / business processes...
In my current project I have the need to determine the current users personal preferences based on favourites stored in a list. These personal preferences then drive various web parts on the page. Using this the Enterprise Edition of SharePoint Server...
Just a quick post as a reminder for myself in future projects. 1 function isNumeric(sText) 2 { 3 var ValidChars = "0123456789."; 4 var IsNumber=true; 5 var Char; 6 7 8 for (i = 0; i < sText.length && IsNumber == true; i++) 9 { 10 Char...