Blogs authored by SharePoint professionals including consultants, developers, and trainers.
Browse by Tags
All Tags »
Sharepoint Application Concepts (
RSS)
-
|
Yesterday, Eric Shupps posted a great article for getting started with SharePoint development. If you are just getting started with development for SharePoint, I highly suggest taking a few minutes to read his article. Also, here are some good resources...
|
-
|
I recently was faced with the problem of rendering a calculated field using a feature. The feature creates and provisions a set of columns and content-types available for use in the site. However, one of the problems I faced was creating a calculated...
|
-
|
As I have been working to develop a web part that our organization will use to present roll-up data from multiple sub-sites to a top-level site, I've come across a n interesting tid bit that was frustrating at first. It is the use of SPSite.AllWebs...
|
-
|
As a side note, here is the translation of the code to VB.NET from Thomas Conté's post. Dim PageFile As SPFile = _ManagedWeb.GetFile("default.aspx") Dim WebPartManager As WebPartPages.SPLimitedWebPartManager = PageFile.GetLimitedWebPartManager...
|
-
|
There are times that I am glad to be a SharePoint developer. Today is one of those days! I have been working on a web part that needs to roll-up a lot of data from multiple sub-sites for a dashboard style view. The view needs to group the data by two...
|
-
|
Today I was working to make modifications to a site that was being provisioned via automation code. The code creates a batch of sites and then uploads various data to the site for review by members of the site. The goal of the automation is to insure...
|
-
|
For those of you that need a quick conversion of the event receiver types, here they are: SPEventReceiverType.ItemAdding = 1 SPEventReceiverType.ItemUpdating = 2 SPEventReceiverType.ItemDeleting = 3 SPEventReceiverType.ItemCheckingIn = 4 SPEventReceiverType...
|
-
|
I recently had a project in which I needed to create a course roster management system for our faculty to view a list of students in their class. We had already created a web service for the management of these courses for an older system, but since we...
|