sharepoint

Binding multiple OnTaskChanged.AfterProperties to one Workflow field.

Hi, I'm creating a State Workflow for WSS and have several tasks that get created throughout it. I wanted to bind all of the OnTaskChanged.AfterProperties to the one Workflow Field so that I can define one rule, to check the status of the task that changed, and re-use that rule wherever I have an OnTaskChanged event. I can't see any pr...

sharepoint rendering templates set attributes from fields

I'm trying to write a custom rendering template for use in the DisplayForm of a list whose fields include Title, HeaderImageUrl, Body. I've got the following so far: <SharePoint:RenderingTemplate ID="NewsListForm" runat="server"> <Template> <h1><SharePoint:FieldValue FieldName="Title" runat="server"/></h1> <div> <p> ...

Receive full XML from InfoPath task form

I'm using InfoPath forms as the frontend to my SharePoint workflow tasks. Some of these InfoPath forms have a particularly complex schema (main data source) to the extent that taskChanged_AfterProperties.ExtendedProperties[node/group name] is impractical. I can receive XML fragments of everything contained within a group through Extended...

SharePoint GetPermissionCollection Web Service missing role name information

Hey everyone, I am using the following SharePoint WS calls GetPermissionCollection GetRolesAndPermissionsForCurrentUser And in all of them, I am missing the rolenames. Am I missing something here? Thanks ...

Truncating HTML attribute value in SharePoint DataFormWebPart

Hello, I'm using DataFormWebPart to display all announcements in the SharePoint site collections. It uses SPDataSouce with DataSourceMode set to CrossList and it works OK. The text of the announcement comes from the XML attribute: <xsl:value-of disable-output-escaping="yes" select="@Body" /> Now I need to limit this text to, say, 250...

Which VS 2008 project for using MVC and WorkFlow

In Visual Studio 2008 after I add the Feb 2010 SharePoint extensions, I see project templates for Workflow (eg., State Machine Workflow Library) and under C#/Web a project for ASP.NET MVC Web Application. If I'd like to do a State Machine WorkFlow using MVC which should I choose and which additional modifications do I need to do ? (I'm...

Jump to URL doesn't work

I have a report that contains a link to a Word document. I have created an Action on the textbox that is Jump to URL, with the URL populated. I have a PerformancePoint dashboard displaying the report, which is in a report library using SharePoint Integrated reports. The link is not working correctly. Following the recommendations of ...

How to configure local smtp server in SharePoint 3.0?

Hi, I,m trying to configure WSS 3.0 to use my local smtp server on IIS. When I'm testing smtp server using telnet it returns message that w-mail is queued to send but e-mail are supplied to their destination. SPUtilit send mail dosen't work for me. I suspect that the name of smtp server in central administration configuration is wrong....

Differentiate between Windows Auth and Forms Auth users when authenticating against same AD with SharePoint 2010 using claims based authentication.

I am currently working on a SharePoint 2010 project where the environment is setup with a SharePoint web application using claims based authentication. The web app is created on port 8081 using Windows Authentication for auth, and extended to port 80 using Forms Based Authentication. The forms authentication provider is setup to use the...

Sharepoint out of the box capabilities

I am planning to build a case management system from scratch, The system will incorporate a workflow. Cases will contain activities to be performed by different people inside and outside the company within a specified window of time. Does SharePoint support a configurable workflow engine that I might use for this project? ...

Custom JS loading twice

Hi I have a custom js file defined in a site def. This gets injected into the master page head as expected. However, something is also injecting another script tag into the body of the page and I cant find anywhere in my code that does this. Does anyone know what this might be or how I can trace it? Ive checked for CustomJSUrl contr...

SMTP configuration to work with SharePoint 3.0 - how to?

Hi, I would like to send e-mail from my own custom webpart using SPUtility (on wss3.0). The issue is that smtp server is on the same host as sharepoint services. SMTP server works and I can send e-mail using telnet. (But it always telling me that message is queued. After all e-mail are reaching theirs destination and they are in my e-ma...

How to get the incoming email address -Sharepoint?

Hi, I want to send the email to the sharepoint adminsitrator when user clicks the form button. How I can achieve this ? ...

SharePoint WSS 3.0 / remove all navigational elements

Possible Duplicate: SharePoint WSS 3.0 / show only limited number of people seen in SharePoint Group Hello, Dont know if this is even possible. But, in sharepoint wss is it possible to force sharepoint to only let users see specific people in their group? For example, if a Sharepoint Group has 100 people in it, then I want ...

SharePoint WSS 3.0 / show only limited number of people seen in SharePoint Group

Hello, Dont know if this is even possible. But, in sharepoint wss is it possible to force sharepoint to only let users see specific people in their group? For example, if a Sharepoint Group has 100 people in it, then I want the user to see themselves, the head of that SharePoint Group, and the CEO. Can audience targeting be used in W...

How to target SharePoint 2003 with a VS 2008 work environment

Currently I have a .NET setup that many workings devs have (VS 2008, SQL SRVR 2008, etc). However, the current client requires webparts to be built on a SharePoint 2003 (it is gov't, so they don't upgrade before doing MASSIVE testing). I have not developed on SharePoint 2003 and understand that I can only directly create create webpart...

need to put a delay of about 5 seconds between two actions of sharepoint designer workflow

( sharepoint 2007 ) i am creating a sharepoint workflow this workflow is started when an item is created or changed in the list called ListA this item has a field called user assigned when the item is created this field is empty the first step in the workflow is - grant item permission in this step the creator of the item is granted ...

How to add extra css to SharePoint 2007 site without reverting back to default theme

Hi all: Currently I'm having trouble adding custom/my own css files to my SharePoint site. I add the custom/my own css files via the c# files (CssLink) as a web part and have them applied to my site's javascript files. Trouble is, whenever the css files were applied, my site goes back to the default blue-ish SharePoint theme color. I...

Anybody knows any third party tool to synchronize lists shema between two SharePoint portals?

I am working on SharePoint development field, and I am suffering from updating the production servers with the latest changes on the development server. Anybody knows any third party tool that synchronizes the changes between two SharePoint portals. I am using WSS 3.0 Thanks in advance for your help. ...

How do I determine the size of a SharePoint list Programmatically

I have an SPList item in sharepoint and I want to find out the size on disk of the list. Is it possible without going through each item in the list and trying to find out the size? Update Below is the code I think I can use if I do need to get each item: long listSize = 0; foreach (SPListItem item in list.Items) ...