Represents a field in a list on a SharePoint Foundation Web site.

learn more… | top users | synonyms

0
votes
1answer
64 views

full name of the user in a User Field

I have a list which among other fields contains a user field, shows domain\username. Is there a way to show full name of the user in a User field?
0
votes
1answer
135 views

What is a good way to determine via server object model if a field supports multiple values?

When looking at an SPField object, how can I tell if it supports multiple values? I.e. a Choice field that is displayed using Checkboxes, a Managed Metadata field that allows multiple values, Person ...
0
votes
1answer
250 views

Problem with visualization SPmenuField in SPGridView

I have created SPGridView and added one SPMenuField as the first column and some BoundFields. Then I added MenuTemplate to the first column. But there are rectangles with white color border (look at ...
0
votes
1answer
214 views

SharePoint OM wont' read item property

I have a list item with one field Classes which is a multiple choice lookup. I want to implement an ASPX page which contains a ListBox which is filled with values from the Classes field. The following ...
0
votes
1answer
185 views

Changing SPField cause no changes

I try to change an SPField after SPList creation, but I'm not getting any results of that change. using this code: SPField oSPField = oSPList.Fields[new Guid("MyFieldGuid")]; ...
0
votes
1answer
430 views

Custom Field value not visible on a view

I have created a custom field based on SPFieldUrl. What I want, is basically just a normal Url field functionality, but I don't want it to be visible when new item is added to the list (a webpart is ...
0
votes
0answers
14 views

Retrieving the SPLookupFieldCollection with particular ID's

The situation is following: I have this kind of string = 58;#value;#59;#value2;#60;#value3;.... So as you see this is just if i do: SPFieldLookupValueCollection collection= new ...
0
votes
2answers
30 views

How to display and get the value chosen in an User field?

I'm very new at Sharepoint and I faced to a trick issue. Here is the situation : in an .aspx.cs file, I've created an EventHandler called btnValidate_Click, raised on a click on a button. In this ...
0
votes
1answer
20 views

Dates and times in Properties vs Fields

I'm trying to roll my own archiver for SharePoint. I always try to let the underlying object serialize itself. Only when it fails do I try to use .ToString(). Anyway, while inspecting the Properties ...
0
votes
1answer
19 views

Set SPBuiltInFieldId.WorkflowInstanceID value

I start worklfow programmaticaly on SPListItem (custom ContentType). When i try to save all fields but "WorkflowInstanceID", its ok. But, item[SPBuiltInFieldId.WorkflowInstanceID] = ...
0
votes
1answer
50 views

How to set a UserMulti field via a UserField Control?

I have a list similar to the usual Tasks Sharepoint List and I introduced the field assigned to as a multi user field like this (I have read somewhere that with Mult option should always be set to ...
0
votes
0answers
97 views

How to save data in ItemFieldValue of custom lookup field type?

I have created custom field type inherited from SPFieldText successfully. I save a data in the item value as string of the next format: "id;#title". Now I need to convert the base type from ...
0
votes
0answers
78 views

SP 2010 Metadata and Crawled Properties

I'm creating a new custom list in code and when complete, the list looks fine. When I look in the Metadata section, in Crawled Properties specifically, I see most (if not all of my columns) under the ...
0
votes
0answers
42 views

Custom SPField error when re-deploying or upgrading WSP

I have created a custom SPField and is working well. But if I retract/deploy or if a upgrade the solution, I've got this error when accessing the item: SPField Field type is not installed ...
0
votes
0answers
16 views

owner field value disappears when coping document to another SC

On RootWeb of both site collections I have created same User field (owner). I mean same user field becuase I used same ID (GUID), name and everything. Then I add the field to a content Type and add ...
0
votes
0answers
101 views

Field display name / static name / title confusion

The msdn documentation for SPFieldCollection.Item[String] says Gets the field with the specified display name from the collection. In Microsoft C#, this property is an indexer for the ...
0
votes
0answers
108 views

EditForm - custom control and updating field values

I'm using a custom rendering template on a list's EditForm. I created a UserControl with a asp:GridView and I would like to use it to insert mulit lookup field values (the standard multi lookup field ...
0
votes
0answers
33 views

Comments fieldlink not visibile

Here my code to add a field link of comments field to a content type SPField field = site.RootWeb.Fields["Comments"] if (field != null) { SPFieldLink spFieldLink = new SPFieldLink(field); ...
0
votes
1answer
132 views

SPFieldCollection TryGetFieldByStaticName bug?

I had expected that if TryGetFieldByStaticName succeeds and returns a value, there would be an SPField in the item that has a static name equal to what I used in the TryGet... call, but no? I.e. can ...
0
votes
1answer
87 views

add field directly to a Document library or via a Content Type

What is differents between adding a field (Site column) directly to a document library or via adding the field to a content type and then add this content type to the list? Because fields directly ...
0
votes
1answer
343 views

Modifying XSL for multi lookup field

I'm trying to create custom XSLT for a multi lookup field, based on this article. When changing disable-output-escaping to yes I can see the html I want to modyify: <a ...
0
votes
1answer
132 views

ContentType.FieldLinks.Add() issue with hidden and required

I have a feature that does the following in the feature activation Code : Creates a new SiteColumn (Type=Text, Hidden=False and Required =True) Set the french version of the Name (using ...
0
votes
1answer
121 views

Custom Field PropertySchema Type=User

I have a custom field in my SP Project. In my .xml file, I have a propertySchema and a user field inside it. Currently the field does not accept multiple users/groups. How can I change that? I ...
0
votes
1answer
185 views

Field required in Content type, but not in my list

I don't know why but when I try to bind a list with my content type, fields having a status to "Required" in my content type are not Required at all in my List. I'm binding the field with this ...
0
votes
1answer
590 views

Find content types for given column

http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfield.listsfieldusedin.aspx $web = Get-SPWeb http://”sitecollectionurl” $column = $web.Fields[“Column Display Name”] ...
0
votes
1answer
87 views

How to identify if the list field come from web or site col?

I have a following task in sharepoint 2007 to identify if the list fields come from the parent web or site col, this i'm planning to do with a powershell script. So what I want to do is to iterate ...
0
votes
1answer
131 views

How to get rid of a broken SPField? Field is not updatable / deletable

I have a broken field in my site collection that is not updatable / deletable. Every change that I try to make on the field does nothing - the field is in the same state as before. I tried it via UI, ...
0
votes
2answers
534 views

Using the FieldRendingControl for a given content type

I'm creating a webpart that acts like a new form. Based on a view I'm getting on fields and rendering them in my webpart using spfield.FieldRenderingControl. My columns are site columns, at this ...
0
votes
2answers
148 views

FieldRenderingControl of SPField throws an exception for Survey List

I have created a Survey List in MOSS 2007. The field used in the survey is of 'Choice' type. While getting the field value in a custom web part program on another page, the FieldRenderingControl of ...
0
votes
1answer
704 views

BaseFieldControl in SPControlMode.Display not display correct values

I'm creating my own Display Form based on a view in a webpart. I'm getting the list (Document Library), and view, and then iterating through the fields, and creating a BaseFieldControl and then adding ...

1 2