Category Archives: SharePoint

SharePoint Get Emails for Users Associated to SPListItem

Challenge On a recent project, I needed a way to build a list of emails for a given SPListItem. Considering most of you just want the code, here it is: Solution public List GetEmailsForUsersAssociated(SPListItem item) { //list for emails [...]
Also posted in C#, LINQ | Tagged , , | Leave a comment

SharePoint List and LINQ using jQuery and IhttpHandler

Challenge I was looking for a simple way to use jQuery and a few parameters to retrieve data from a SharePoint List informat. Here’s my approach… Javascript In the below method, I pass in the list name, url to handler, and some query parameters: //request menu items $.ajax({ dataType: 'json', url: '_layouts/data/list.ashx', [...]
Also posted in LINQ, MOSS, jQuery | Tagged , , , | 2 Comments

One or more field types are not installed properly. Go to the list settings page to delete these fields. SharePoint Error.

Problem Our test team is working hard and we finally had ironed out all the bugs on our development and test server. Unfortunately, upon deploying to our production server we ran into this error: One or more field types are not installed properly. Go to the list settings page to delete these fields. In my research I [...]
Also posted in MOSS | Tagged , , | 1 Comment