sharepoint

Can anyone recommend lively SharePoint groups or forums?

I need to get up to speed with MOSS 2007. The initial requirements are quite limited but I want to make sure that the basic structure does not make future expansion difficult. I am fairly new to MOSS 2007 but have some experience with SPS 2003. Can anyone recommend lively SharePoint groups or forums where I can get answers to my questi...

Sharepoint zones

I'm trying to create a new sharepoint application and for some reason the zone dropdown doesn't contain "extranet". Does anyone know how to add zones? ...

SharePoint, Workflow and Web Services - restart workflow

Can you restart a workflow or push a workflow to its next step using SharePoint Web Services? If so which web service do you use? If you change a field like "Status" and the workflow uses this to know what it should do next... will it "nudge" the workflow forward? ...

Is there a good reference SharePoint's databinding syntax?

I'm putting asp server-controls into my SharePoint XSLT using SharePoint Designer. I've found it's really handy for pre-populating values into the form, or providing a different experience than the SharePoint defined layout (hidden fields, etc). For example, I can use a asp:TextBox control instead of the SharePoint:FormField control if...

How to bind a SharePoint textfield to a dropdownlist?

I'm customizing a custom list form in xslt using SharePoint designer. In my list, I have a textbox that represents a numerical value. I would like to present this textbox to the user as a dropdown list with pre-defined values (1-7). Unfortunately, I can't use a SPFieldChoice because it is evaluated as a string in my SharePoint Designe...

SharePoint Site Definition Files -- Page is always named "Home"

I'm creating new Site Definitions using this method: http://weblogs.asp.net/paulballard/archive/2007/04/09/creating-a-custom-sharepoint-2007-portal-site-definition-using-the-portalprovisioningprovider-class.aspx and when they get created, they're not using the "Title" of the Site as I'd expect, instead they all say "Home". In my SiteT...

Sharepoint - Project Web Access - Team Foundation Server

So, my client wants a customer dashboard integrating all information related to a project in a common sharepoint site. So we have something like this http://tdg-srv-006/ <------- Sharepoint site (SP) http://tdg-srv-006/PWA/ <--- Project Web Access site (PWA) http://tdg-srv-tfs2/ <------ Team foundation Server (TFS) He wa...

What are the builtin id's for SPNavigation.GetNodeById

I'm programmatically creating subsites and want to add links to them the Sites node on their parent's quicklaunch area, like the SharePoint web interface does by default. Rather than enumerating the nodes in de QuickLaunch collection until I hit "Sites" (internationalization issues etc), I'd prefer to use Navigation.GetNodeById. Throug...

web service references - dynamic URL

I am currently working on a SharePoint project that needs to use the Lists SharePoint web service (Lists.asmx). Therefore, we need to add a service reference to it in Visual Studio. However, we all develop and test on different virtual machines (with different VM names, URLs, etc.). The QA, Test and Production environments all have diffe...

Is there any way to use a *.sitemap file in Sharepoint for navigation?

I'm working on a public-facing Publishing site. I need to provide static navigation in the MasterPage. I don't want it tied to my site structure. This won't be edited very often. I'd like to use the standard ASP.Net Navigation controls, <asp:Menu/> and <asp:SiteMapDataSource/> , which assume you have a *.sitemap file in the root. In...

SharePoint UserData and the ;# Syntax in returned data

Can a SharePoint expert explain to me the ;# in data returned by the GetListItems() call to the Lists web service? I think I understand what they are doing here. The ;# is almost like a syntax for making a comment... or better yet, including the actual data (string) and not just the ID. This way you can use either, but they are nicely p...

Embed video in SharePoint Content Editor WebPart - code?

I've tried this: <EMBED style="WIDTH: 209px; HEIGHT: 196px" pluginspage=http://www.microsoft.com/Windows/MediaPlayer/ src=../Documents/filename.wmv width=209 height=196 type=application/x-mplayer2 controller="false" SHOWSTATUSBAR="0" AUTOPLAY="0"> But it just plays the sound and shows up with a green square - how do I get it right? ...

Cross Method Dispose Patterns in SharePoint

I've written a class that does various modification to the contents of a SharePoint site. Inside that class, I've implemented a lazy resolved property private SPWeb rootSite { get { if ( _site == null ) { SPSite site = new SPSite( _url ); _site = site.OpenW...

Blank popup in SharePoint

I am trying to connect a filter web part with a document list web part but the popup showing the options for filtering is blank. What I am doing. I have, as I described before, a QueryStringFilter web part (MOSS) and I want it to send the filter parameter to my document list web part (out of the box SharePoint). I go in to the edit mo...

Generics in PowerShell

I need to use the SharePoint API in the following way in a PowerShell script: C# Code: var service = farm.Services.GetValue<SPWebService>(); How does one specify the generics parameter in PowerShell? At the moment I get an Exception stating that "Late bound operations cannot be performed on types or methods for which ContainsGenerei...

SharePoint check in SPListItem

In sharepoint how can you check in an SPListItem? ...

.NET - Workflow, End-User Diagrams, Reflection

Are there any tools which can reflect over Windows Workflow or SharePoint Workflow assemblies and generate a .png or some other image type to present to a user? Dynmically via ASP.NET? Or if there isn't anything like this... how do you provide documentation / end-user documentation? I would be interested in free or non-free tools. ...

Sharepoint UpdateListItems list not updating

I submit an update to UpdateListItems. It returns success but the list item ahs not updated. Any advice on how I would track down what is going wrong? Below is the XML being generated: <Batch OnError='Continue' ListVersion='1' ViewName=''> <Method ID='1' Cmd='Update'> <Field Name='ID'>11707</Field> <Field Name='Business_...

WSS 3.0 Workflow - How to get data from joined lists

I am having problems with WSS 3.0 Workflow using joined lists. Here is the description: I am creating a simple work-holiday request/booking app. This is just for internal department use so that staff can book annual leave and have it authorised by their respective manager. To that end, I have two lists: The first list is called 'Staff'...

ADAM Administration from SharePoint

We're in the process of building a MOSS site and one of the 3rd party tools we're using has a requirement of AD/ADAM as the authentication provider. We would like the user's to manage their own accounts (e.g. resetting passwords, registering new users, etc) so we're going to need WebParts for administering users in an AD/ADAM/LDAP DB. ...