Creating a Custom Welcome Menu for SharePoint Server 2010 – Part 3
Part 3 – Sign Out/Sign in as a Different User
A project I am working on called for a custom implementation of the SharePoint Welcome menu control. (more…)
A project I am working on called for a custom implementation of the SharePoint Welcome menu control. (more…)
A project I am working on called for a custom implementation of the SharePoint Welcome menu control. The replacement control needed to provide the following:
I had to create a control that looked and behaved like the following:
The designers came up with some clean, semantic markup married with some jquery, for me to start from:
<div class="header">
<img class="header-logo" src="/images/header_logo.png" alt="" width="169" height="78" />
<div class="header-bar">
<div class="profile_menu">
<a href="#" class="profile_btn">
<span class="image"><img src="" style="width:20px;height:20px" /></span>
<span class="name">John Doe</span>
<span class="arrow"></span>
</a>
<div class="profile_dropdown">
<div class="dropdown_bkgrd">
<ul>
<li>Edit Profile</li>
<li>My Site</li>
<li>Log Out</li>
<li>Sign in as a Different User</li>
</ul>
</div>
</div>
</div>
</div>
</div>
This is part 2 of a three part series.
A project I am working on called for a custom implementation of the SharePoint Welcome menu control. The replacement control needed to provide the following:
I had to create a control that looked and behaved like the following:
The designers came up with some clean, semantic markup married with some jquery, for me to start from:
<div class="header">
<img class="header-logo" src="/images/header_logo.png" alt="" width="169" height="78" />
<div class="header-bar">
<div class="profile_menu">
<a href="#" class="profile_btn">
<span class="image"><img src="" style="width:20px;height:20px" /></span>
<span class="name">John Doe</span>
<span class="arrow"></span>
</a>
<div class="profile_dropdown">
<div class="dropdown_bkgrd">
<ul>
<li>Edit Profile</li>
<li>My Site</li>
<li>Log Out</li>
<li>Sign in as a Different User</li>
</ul>
</div>
</div>
</div>
</div>
</div>
This is part 1 of a three part series.
Generic Handlers (.ashx files) deployed to the _layouts directory are not directly supported by Visual Studio 2010 SharePoint projects like custom .aspx application pages are. This post will cover how to add them to your Visual Studio project and deploy them properly to the ISAPI folder.
Just wrapped up a project developing a custom metadata editor to plugin to the Colligo Contributor for SharePoint client. If you aren’t familiar with Colligo, it’s a desktop client application/outlook…