sharepoint

SharePoint 2010 Filter Web Parts

I cannot seem to get the SharePoint 2010 Filter Web Parts to display. I tried enabling the SharePoint Server Enterprise Web application features at the Site Collection level (Central Admin - Manage Web Applications - Select Web Application - Manage Features - SharePoint Server Enterprise Web application features - Activate) as well as a...

SharePoint -show list data in custom HTML/ CSS.

Hi -I have a News list and I am requiring to show the News data (Date, Title and Description) in custom HTML/ CSS. I am not sure of my options. Do I need a custom web part? A custom view? Thank you very much for your help. EDIT: I am using WSS 3.0 and I will then upgrade to MOSS 2007 -thank you. ...

Sharepoint 2010 Reference Resource Suggestion?

Anyone have a suggestion for a decent book / web resource for Sharepoint 2010 technical information? I'm looking for one that provides a technical breakdown of both the design and development aspects of the system (ie. C# library reference + code examples AND user level design tutorials). The resources provided on MSDN are pretty poorly ...

Best intranet software to gather opinions and form consensus?

Wondering if there is any good cheap software that allows people to vote on items as on a Sharepoint site. The items are not necessarily Q-and-A, otherwise I would use a SO clone. For example, a list of the biggest "pain points" a team faces. Voting helps determine where to allocate resources to fix issues. ...

fiter user and group in people editor control

Hi all, I have a people editor control,In this control user can enter user or group. My problem is if control have both user and group , how I differentiate. ...

HELP! Site Column Page Not Accesible

I accidently created a field type called "Test" instead of Text using the following Powershell command: Get site and web object $site = Get-SPSite -Identity "http://mysite/sites/.." $web = $site.RootWeb Assign fieldXML variable with XML string for site column $fieldXML = ' Poweshell threw the following error: Exception calling "Ad...

like sql dependency in shrepoint list

Hi All, Can we do list dependency in sharepoint like 'sql dependency'.So we can fetch data in our catch if nothing change in list.can we do this? Please help ...

Custom text field with syntax highlighting for c# in a sharepoint list

Hi, i need a text field in a sharepoint 2007 list that displays C# code with syntax highlighting. Do i have to develop it on my own or knows somebody a control that meets my needs? Thanks a lot ...

Create .NET assembly connector programmatically in SharePoint 2010

Does anybody know how to create a .NET assembly connector programmatically? I mean I want to generate an .NET assembly in runtime using Reflection.Emit and deploy it to SharePoint. I've found this great post: http://www.toddbaginski.com/blog/archive/2009/12/01/how-to-programmatically-create-a-sharepoint-2010-external-content-type.aspx ...

How can I ensure my programmatic uploads are done in the correct order?

In our application, we store two copies of a file - an approved one and an unapproved one. Both track their versions separately. When the unapproved is then approved, all of its versions are added as new versions to the approved file. To do this properly, my code has to upload each version separately into the approved folder, and update ...

Javascript Anchor Jump To The Top Issue

Hi, I've added this code below to a MOSS 2007 web part inside OnPreRender() method. if (!Page.ClientScript.IsClientScriptBlockRegistered("jump_to_anchor_JS")) { Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "jump_to_anchor_JS", "window.location.hash=\"anchor\";",true); } The page loads, jumps to the specific anchor, ...

Get the length of a sharepoint list column in a calculated column?

How to get the length of a list column in another column? e.g. I want to get the total number of characters in the column "Name" of the list, so I have created a calculated column called "Name Length" and applied the formula LEN(Name) to this computed column, but this column shows 0 for all the items in the list. Am i using the wrong for...

SharePoint GridView and SPDataSource

Hi guys, I'd really appreciate your time to look at this. I am trying to use GridView and SPDataSource within a SharePoint Application Page (code behind). This is what I have in the Application page: (Default.aspx) <SharePoint:SPDataSource id="oSPDS" runat="server" DataSourceMode="List" UseInternalName="true"> </SharePoint:SPDataSourc...

Task intimation mail in Sharepoint OOTB approval workflow not trigering to certain users

Hi, While using the Sharepoint OOTB approval workflow,certain users in the domain are not recieving the Task assignment mail.However,if the same user's name is put into the CC column,the mail is triggered.This is happening with only very few users(have identified only 2 so far).Other users in the domain have been recieving mails without...

How to deploy document library custom list forms?

I have created two forms, one for creating a new item in a documnet library and one to display an item from the library. These forms are placed in the forms folder of the document library and i have used the List Form Web part using SharePoint Designer 2010 to create them. Now I want to port them to a production environment; so what woul...

Add SharePoint workflow to a list programmatically

We are using SharePoint Foundation 2010. We have created a workflow that checks the status of a task list. If we associate the workflow with the list in the SharePoint UI it works fine. We were wondering how we could automatically associate it, maybe in the feature receiver code that sets ut the site? ...

Convert(Integrate) an ASP.Net web application into Sharepoint 2010

Hi I have developed an ASP.Net web application which is having several aspx pages and Business Logic and data access and templates. Our client wats to move this ASP.Net website to sharepoint for ease of maintainance. I am new to Sharepoint. What steps or approaches are better to achieve this requirement? Can anyone help me to provide ...

add user to an organizational unit in active directory

I'm gonna build a webpart for creating user in active directory. i want to add created user to an organizational unit if the organizational unit exist. how i can do that? ...

I want to create function in infopath form that get sharepoint list value

Hello all, I am really new to infopath. I have sharepoint list that have same column Firstname and Lastname and age.I have infopath form that contain two dropdown controls for firstname and lastname and one textbox for age. Now i want to write function that can take argument as selected values from both the dropdown and get value of cor...

How can I list all SPUser objects in a SPGroup?

I need to retrieve all SPUser's from a SPGroup. Unfortunately, the group may contain Active Directory groups, so a simple SPGroup.Users is not enough (I'd just get a single SPUser for the AD group, with the IsDomainGroup property set to true). Does anyone have a good idea how can I obtain a list of all SPUser's, descending into any Acti...