Skip to main content

Posts

State of Illinois SharePoint Site Now Live!

I have been working with the State of Illinois to get their public .gov SharePoint 2007 site up and running. http://www.illinois.gov . The site has undergone a major UI and Usability overhaul and is now live! This site is built for all users. Accessibility has been a huge focus. We plan on adding some additional features that will really make this a top 10 State Government Website. During the process we reviewed some of last years top ranked state government websites: Center for Digital Government Ranking site. 1st Place: Utah 2nd Place: California 3rd Place: Arkansas (SharePoint) 4th Place: Maine 5th Place: Colorado Others: West Virginia (SharePoint) Maryland (SharePoint) The Governors site is in the process to be upgraded as well.

SharePoint 2010 Two Tier Global Navigation

I have been asked quite a few times if the SharePoint 2007 two tier global navigation will work with SharePoint 2010. The answer is yes with a few slight modifications. The approach stays the same: Master Page points to web.config > web.config points to .sitmap file > Page Renders custom navigation control. The difference between 2007 and 2010 of course is that you want to add the custom site map provider to the new 2010 web.config file. Search for the following in the web.config file: “ sitemap ”. within the last row add the following: <add name=" DEMOGlobalNavSiteMapProvider " siteMapFile="/ _layouts/1033/styles/demo/DemoGlobalNav.sitemap " type="Microsoft.SharePoint.Navigation.SPXmlContentMapProvider, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> You will notice that I placed my custom sitemap file in the style folder within the layouts directory. There is also some slight changes to ho...

Issues with moving search into top ribbon bar

I was recently on a project where there was a requirement to have many items in the main navigation. There was not an option to consolidate these into smaller groups. The idea was to move the search box up into the top ribbon bar. This would allow for more horizontal space for the navigation items. However in my attempt to move the search I found a little gotcha. I selected the search control in SharePoint Designer and moved it right above the welcome navigation control code. Wrapped the control in a div tag and temporarily added an inline style of float left. <div style="float: left;">    <asp:ContentPlaceHolder id="PlaceHolderSearchArea" runat="server">       <SharePoint:DelegateControl runat="server" ControlId="SmallSearchInputBox" Version="4"/>    </asp:ContentPlaceHolder> </div> I saved the master page and then ...

SharePoint 2010 IA Wireframe Toolkit

I created a post about a year ago about Using Visio for SharePoint Wireframes . So now that 2010 has been released I got busy building the next generation Visio Wireframe Toolkit for SharePoint 2010. It is currently around ~40 pages that range from Wiki, team site, meeting workspaces, search, my sites, and application pages. All the text, navigation, web parts, and images are editable and can be added, moved, edited or deleted. In this version I made sure that the correct colors, fonts, and web part placements were true to the application. On most of the templates I have included some basic information about the page layout, web parts on the page, and libraries/lists included. Here are some samples: Team Site Contacts Web Database My Profile Silverlight Organization Viewer I wish I could share it with everyone but my hands are tied and I cannot. It is an EMC Consulting artifact and I am writing this blog post to mainly get the word out that Visio is st...

SharePoint Tab Web Part JQuery, Java, and CSS

I have been searching for a simple tab web part for SharePoint but mostly came up empty handed… I was looking for something that a user can easily drag and drop a web part onto a specific tab within the page. There are quite a few free tab web parts out there but most of them were not just quite what I wanted. I checked out the following Tab web part solutions. Easy Tabs : From Path To SharePoint Pro: The tabs automatically take the name of the web part. Con: There is no option to add more than one web part per tab, and the User Interface is not that intuitive. Zone Tabs : From MSDN Pro: You have a lot of options for tab customization Con: It’s a web part that you have to install on the server. From what I remember it’s not that easy to re-arrange the web parts on the page. I finally found this article from Bits Of SharePoint Site : http://www.bitsofsharepoint.com/ExamplePoint/Site/TabPage.aspx His code was exactly what I needed. All...

Finally Passed the 70-631 Microsoft Certification!

It’s been a rough road getting this certification but I have officially passed both the MCTS 70-630 and 70-631 Microsoft Certification!

Thank you Visio 2010!

I have been working with Visio 2010 for a while now and I have to say that I am really happy the new features. I do all of my wireframes in Visio. These can be from 10-40+ pages. I used to struggle with duplicating pages in the past but now there is this great feature similar to how PowerPoint works. If you copy an object and past it on another page it places it in the same horizontal and vertical location from where you copied if from. In the past I had to create a temporary box and place it in the upper left corner of the page > copy both objects > paste those objects on another page and then line the temp. box back up in the upper left corner… I feel like I am in one of those Windows 7 Commercials. “I had this vision one day of Copying and Pasting an object and having it paste into the same location on another page. The next thing I know Microsoft released Visio 2010. I’m a PC and Visio 2010 was my Idea…” This not only works going from page to page but from one Visio do...