Creating External Lists using SharePoint Designer 2010 or SharePoint 2010 UI is just a breeze. But what if you want to create them programmatically? There are two different ways you could do so: Using Object Model Using the SPWeb.Lists.Add method we can create an external list: SPListDataSource ...
[More]
This year, I am presenting two sessions at TechEd New Zealand 2010:
Session 1
OFS203 Building Business Applications using Business Connectivity Services using SharePoint Designer 2010 (Part 1)
Track: Office & SharePoint
Time: Tuesday, August 31 11:50 - 12:50
This session will show ...
[More]
Below is a simple table to find what BCS features are baked into the SharePoint 2010 platform editions: BCS Feature SharePoint Foundation Standard Edition Enterprise Edition External List Yes Yes ...
[More]
Even though BCS is great and can do wonders when you want SharePoint 2010 to interact with your external systems or other LOB applications, it has its own limitations. Understanding these limitations will help you build good BCS solutions. Below are some/all of the BCS/External Lists limitations: ...
[More]
Silverlight for SharePoint 2010 is one of the newly added features to SharePoint 2010. It includes a rich set of APIs that allow you to interact with SharePoint data – lists, document libraries, sites etc., from your Silverlight application. I am in the middle of reviewing the Microsoft Silverligh...
[More]
This is one of the best features in the Visual Studio 2010 Tools for SharePoint 2010! You can use these replaceable parameters in your project files for SharePoint values. Visual Studio will replace them with actual values when packaging the solution. This is very useful, especially in Elements fi...
[More]
One of the cool new feature in SharePoint 2010 is Document Sets. They can easily replace Folders in SharePoint 2010. Document Sets help you organize related documents into a ‘set’ and also provide a user interface (home page) to manage them. You can also use metadata against the document set which m...
[More]
Every year Code Camp is organised the day before Tech-Ed and this year it falls on August 29th, Sunday! If you don’t know about Code Camp – Code Camps are non-profit, and organised by members of the local developer community. This year, Code Camp includes the following tracks: 1) ....
[More]
SharePoint 2010 introduces the new dialog framework which helps users stay in context of the page without navigating away from the page. Yes, the modal dialogs that pop up: The JavaScript client object model provides the SP.UI.ModalDialog class to work with the dialog framework. In order to work...
[More]
If you are using Client Object Model to create Fields, you will be working with the Field class: private static void AddFieldsToProjectsList()
{
String fldDescriptionXml = String.Format(FieldXml,
"<guid>",
...
[More]
If you are using JavaScript Client OM for building SharePoint 2010 solutions, especially manipulating the Ribbon, building modal dialog boxes etc., , you might be wondering how I can get IntelliSense working for my JavaScript code. It is actually very simple. At the top of your .js file, yo...
[More]
So you have created a very cool site workflow in SharePoint Designer 2010, published and you want to start programmatically. Below is the code snippet to start a site workflow. Credit goes to MSDN user Paul Turner : static void Main(string[] args) { using...
[More]
Associations in BCS are a great way to relate two external content types based on a foreign key. It is actually very easy to create an association using SharePoint Designer 2010 – no code required! You can read more on the following blogs posts to know more about associations: 1) ...
[More]
If you are planning to install PowerPivot for SharePoint 2010, then there are two ways to install: 1) Installing to an existing SharePoint 2010 farm 2) Installing to a new SharePoint 2010 farm I always find (myself and) more people fall in the first category where ...
[More]
So, you have heard of this wonderful thing called co-authoring in Word/PowerPoint/Excel 2010 and very eager to try it out?
If you have SharePoint 2010 + Office 2010 installed, then you are all setup to try out co-authoring right away! Yes, no extra setup needed! It should also work with Sha...
[More]