Case 1: AllowDeletion
There might be a case where you have custom document libraries in your SharePoint-solution bound to a customer specific custom content type. It might be confusing for the customer to have the default libraries, which come when the Office SharePoint Server Publishing feature has been activated.
“Some user will at some point inevitably put…
Read more »
This is rather uncommon situation, but we needed a way to easily translate strings in our code against the resources deployed in 12\Resources. We created extension methods for that:
public static string Localize(this string source)
{
return Localize(source, (uint) Thread.CurrentThread.CurrentCulture.LCID);
}
…
Read more »
Whenever there is a need to customize the look and feel of the default MOSS 2007 site actions control without going through several lines of code, CSS comes in handy.
The tricky part involves replacing the white arrow image which is hardcoded on the default control itself to reflect your design. If we look at the HTML that is rendered…
Read more »
SharePoint 2010 combined with InfoPath 2010 gives you new tools and ways to customize standard SharePoint lists. All that is required for extending and enhancing the listform is navigating to SharePoint list, selecting List Tools – Customize Form from the SharePoint ribbon.
This will start InfoPath 2010 and generate standard listform for you to customize. All field columns of the…
Read more »