Tagged Questions
0
votes
1answer
86 views
Sequential workflow running twice sharepoint 2007
I inherited a site with a sequential workflow (created in Visual Studio 2008). The workflow is attached to a content type and is set to run only on item created. Recently, I attached three declarative ...
2
votes
1answer
87 views
Loading NewForm based on Content Type
I am using the Training Fab 40 template to build a training site in MOSS 2007. I have another content type for my Course list. I want to load the NewForm.aspx based on Content Type selected. The two ...
0
votes
0answers
36 views
Content Type change won't save
I have a list with 2 list content types. When the content type is changed and then saved the old file retains the old content type. We are on SharePoint 2007
Our process is the users upload a file as ...
1
vote
2answers
851 views
create content type from workflow task
I have been looking all over the internet for instructions on how to create a content type based off the Workflow Task type. Everything I have found thus far seems like it is incomplete or has gaps ...
0
votes
0answers
60 views
MOSS 2007 Sort a dropdown content column globally
I have a content type which requires all documents to be categorized by a dropdown box. Is there a way to sort the options that are displayed?
0
votes
1answer
98 views
MOSS 2007 Links List Changing Automatically
Whenever I post a link to an external site, for some reason SharePoint changes the domain name to the server domain name. E.g. If I post google.com/new-url, it will change it to mysite.com/new-url.
...
2
votes
0answers
78 views
Risk in inheriting from “Event” content type?
I'm looking to inherit from the "Event" content type (0x0102) to enrich the meta data associated with calendar items. OOTB it's hidden but I've found many blog posts talking about how to get round ...
1
vote
2answers
169 views
Default Field values are not selected when changing content type
When I change the content type of an item in my list through "Edit Item" option, some additional fields are rendered at the bottom of the form (These fields are part of new content type)
However, the ...
5
votes
2answers
78 views
Update a list item in moss2007
i have a list with Column name Reported By.It is a choice field.When adding a new item to the list the current user name also should be added to the Reported By column's field.It should be the first ...
1
vote
0answers
89 views
Manage content and structure copy page is not setting same content type on target page list item
In SharePoint you have the ability to copy pages from one list to another. I have a page in list 1 which is set to use the Page content type. When I copy this same page to list 2 (same web) it copies ...
1
vote
0answers
26 views
Changing Data Types
I want to change the data type on a field from text to multiline, Before I do, I want to know what to expect as in errors, or problems this may cause with the data already stored in that list? Please ...
4
votes
2answers
983 views
Webpart Page as Document Template (SP 2007)
I am trying to create a custom content type where the Document Template is a webpart page with multiple webparts already on it.
My problem is, I created a page in a page library, saved a copy of that ...
1
vote
2answers
465 views
What to do when a Site Column name is already being used?
I'm running into a situation where a Site Collection has several sub sites. Each sub site has data related to a particular geographical region. When trying to create content types / site columns for ...
2
votes
1answer
3k views
Add new column to an already existing content type with a feature?
Is it possible, with Sharepoint 2007, to add new columns with a Feature to a content type that is already being used in some lists?
1
vote
2answers
1k views
Get ContentTypeId In NewForm.aspx URL QueryString
I've been trying to access the ContentTypeId in the NewForm.aspx querystring. Knowing that will allow me to set up conditional statements to display information specific to a Content Type. My ...
0
votes
1answer
101 views
Customize Content Types In a List
I'm working on a SharePoint List that employs multiple Content Types. I would like to add a jQuery floating-draggable DIV containing information specific for each Content Type. I have successfully ...
0
votes
2answers
233 views
Not Updating Folders Custom Content Type
Please help me urgent..!
I have the following content types
ShareDoc Document
Program or Project Folder
Secure Folder
Folder
I am creating nested folder in sharepoint document library in my ...
1
vote
2answers
142 views
Using CodePlex Feature Generator
I was just wonder whether any acutally used the feature generator from codeplex or not. I have following questions...
Does it create good version (meaning not missing anything major from feature) ...
2
votes
2answers
252 views
document properties wiped out when saving a new version of office document
I use the SaveBinary() method of the SPFile class to save the new file to an
existing document library item. The problem is, if this document library
item is an Office document, the SaveBinary() ...
0
votes
1answer
425 views
Title Columns shows up twice in the edit or new form
current setup:
1. Parent content type (PCT1) has 5 columns (including Title column)
2. Child content type (CCT1-A) inherites from PCT1 and adds 5 more columns (but child ct also comes with it's own ...
1
vote
1answer
1k views
Original creation date of word document
I have a word document created in, say, July 10 2010.
When i upload it to sharepoint (say August 5, 2010) its creation date vaalue in sharepoint will be in Aug 5, 2010, and i can't find any trace of ...
0
votes
1answer
353 views
View/Edit document Properties from a Client Application
I want to view and edit the properties of a Document using a windows form:
Is this feasible?
To be more clear, when you click on "Edit Properties" for a document inside a Document Library in ...
5
votes
4answers
341 views
Better to try to reuse built-in site columns, or create your own?
I'm creating a client content type. One of the properties I want to store for each client is their postcode.
I could create my own site column, say Client Postcode. But there's also a site column ...
1
vote
2answers
366 views
How to insert an Item with content type Folder
I have a custom list with a custom content type inherited from the Folder content type.
When I insert a new item in the list I do it like this:
newItem["Name"] = "New Folder";
newItem["Content ...
5
votes
3answers
196 views
Equivalent of a database table in SharePoint?
I'm making a Publishing site, and part of this site will display information about company products. We have a number of products, and each one should have its own description page. The description ...
2
votes
2answers
364 views
Defining using xml a content type, custom column and list instance in single feature
Is it possible to define a content type, a custom column, a list instance and associate the contenttype to the list using xml, all within the same feature or do they need to be seperated into seperate ...
4
votes
1answer
2k views
How do I programmatically reorder fields in a custom content type?
This is the code I wrote to reorder fields in a custom content type:
//get the content type
SPContentType listContentType = myList.ContentTypes[MyContentTypeName];
//get the field name to put first
...
1
vote
3answers
3k views
How do I determine where a content type is being used?
Months ago I made a content type that inherits from the Announcement type. I thought I put it in just three sites to test the content query web part, but I can't delete the type. How can I see which ...
1
vote
1answer
180 views
Contentype.Update(true, true) and ui validation
When using the sharepoint api to add field links to a content type, with code similar to the following:
AddFieldLink(siteField, contentype);
contentype.Update(true, true);
I have specified ...
2
votes
2answers
1k views
Restrict search to one field in a content type?
Simple question really how can I restrict the SharePoint search to only search against one field for a content type.
I can create a scope for the content type but how do I go about restricting the ...
5
votes
3answers
4k views
Is there a list of Sharepoint 2007 WebParts, Features and ContentTypes that Sharepoint installs with?
Does anyone know where I can find a list of all the WebParts, Features and ContentTypes that are available to a regular Sharepoint installation?
What I need to do is identify any of the above in a ...