Like the other "Hidden Features" questions, what are your favourite parts of the SharePoint API and development platform (both WSS 3.0 and MOSS 2007) that help you get the job done?
Please share your tips, tricks and secrets!
|
9
|
Like the other "Hidden Features" questions, what are your favourite parts of the SharePoint API and development platform (both WSS 3.0 and MOSS 2007) that help you get the job done? Please share your tips, tricks and secrets! |
|||
|
|
|
|
One of my favorites despite the ugly implementation is the SPWeb.ProcessBatchData method that lets you process multiple operations in batch. It also lets you do stuff otherwise not possible via the object model. For example creating a new uncustomized Web Part page. |
|||
|
|
|
|
It has to be SPSecurity.RunWithElevatedPrivileges(delegate). There are plenty of bits of the SharePoint API that I am not a big fan of, but this one makes me feel quite dirty every time I use it. But I often use this to wrap all of my Data Access code so that I can use Integrated Authentication.
|
|||
|
|
|
|
Making schema.xml View elements concise by referencing all the guff using
or
|
|||
|
|
|
|
Custom Search Results pages - not really hidden, but very powerful, and frequently overlooked. You can really improve the results pages with a bit of XSL and a few changes to the Core Results web part. If I had to select a class, though, I'd nominate the `SPSiteDataQuery' (MSDN) |
|||
|
|
|
|
Custom Provisioning Providers SPWebProvisioningProvider They let you do stuff on a site after it has been provisioned. Feature stapling can cause race conditions since you in some situations cannot be sure if an artifact is provisioned or not (stapled features are executed in random order inside their scope) Also provisioning providers only need a new template ID in webtemp, so its a pretty clean approach! |
|||
|
|
|
|
|
||||
|
|
|
My favorite feature (though it isn't an API object) is "feature stapling". Being able to automatically attach and activate a feature based on the site template being used. This is great for swapping out the MasterPageUrl. As far as API I would have to say the SPSite overload that accepts a user token.
This is the prefered way to elevate privledges unless you require network access rights. |
|||
|
|
|
|
My Favourite feature would have to be delegate controls. The idea is that you can replace the standard sharepoint controls with your own user controls. The normal feature deployment process can be employed, so you can easily deploy and retract your changes, but most importantly you don't touch the SharePoint system files. The delegate control is normally used to help brand the SharePoint site or to provide alternate functionality. A good example can be found here |
|||
|
|
|
|
Here are a few of my favourites:
|
|||
|
|