Tagged Questions
The spfield tag has no wiki summary.
3
votes
2answers
656 views
can i create my own formula for calculated field in sharepoint 2010 using c#
i want to create a programmatically calcluated field for sharepoint 2010 using visual studio 2010 in c# language.
is there a way to set a formula that will call to my own function and return a result ...
3
votes
4answers
7k views
Programmatically setting field value for sharepoint listitem
I'm trying to simply add a simple text or hyperlink field to a list item in sharepoint 2007.
I can add the field no problem:
list.Fields.Add("MyField",SPFieldType.Text, false);
And it shows up ...
2
votes
1answer
259 views
Validate Custom Sharepoint field if Empty?
I'm using Sharepoint 2010 .. with a custom field in visual studio 2010.
I created a custom field. This particular one is a datetime field ("Termination Date"). I want it to fail validation if it ...
2
votes
3answers
2k views
How to get all possible values for SPFieldLookup
I have a lookup field in sharepoint which just references another list. I wonder how do I programatically enumerate all possible values for this field?
For example, my lookup field "Actual City" ...
2
votes
3answers
2k views
Problem with DisplayPattern in SharePoint 2010?
I am adding a new field to a list using the AddFieldAsXML method of SPFieldCollection. The method executes fine with no problem. And the column header shows up when I view the list; however the ...
1
vote
1answer
560 views
SharePoint - don't change Modified Date on Update
I'm currently deploying a SharePoint solution with publishing pages. These pages allow the user to select "Do not update the modified-date".
This is solved by a small controll placed on the page.
...
1
vote
1answer
1k views
Programatically changing field order in Sharepoint 2007 list
I'm adding in two new fields into an already existing Sharepoint list programmatically through a feature. The fields are being added successfully but I have been unable to adjust the column order.
...
1
vote
2answers
869 views
WSS3 - setting a default value on a SPFieldType.Boolean after creation
I'm using WSS3 and C# to create site and I am creating a class to change fields on lists after they have been created. I have already created an SPField.Boolean type with no default value, but after ...
1
vote
1answer
126 views
SharePoint Custom Field - is it possible to handle item deletion event?
I'm expanding SPFieldText and BaseFieldControl to create a custom field. The field saves some data externally (for example, on a database or on another list)
Within the control I'm able to handle Edit ...
0
votes
0answers
31 views
Can event like selectedItemChange be associated to SPFieldChoice? I dont want to create custom control
Is there a way to associate selecteditemchanged event for a SPFieldChoice? I do not want to use a custom control. I need to write a C# code/event which gets fired when the SPFieldChoice value is ...
0
votes
1answer
339 views
SharePoint calculated field based on another hidden field
In a production deployment we have a calculated field which is composed of a formula that references two other hidden fields. This is simple concatenation with a little logic for determining version
...
0
votes
1answer
836 views
Get value from SPFieldUser with AllowMultipleValues fails only in a Timer Job
This one is weird.
I'm executing this code in a Timer Job in SharePoint 2010 ...
...
// Get the field by it's internal name
SPField field = item.Fields.GetFieldByInternalName(fieldInternalName);
if ...
0
votes
1answer
690 views
Get a reference to current Listitem from within custom SPField
I've successfully created a custom field inheriting from SPFieldText and happily have complete control over rendering it on the input form as a control.
Problem:
I have a need to create a link to a ...
0
votes
1answer
324 views
Non-empty fields are empty in word
I have created a multicolumn custom field and deployed it in SharePoint. To be able to use the field values from my custom field I also deployed an event receiver to copy the three values from my ...
0
votes
1answer
594 views
SPField custom attributes in schema
I'm trying to decide whether it is possible to store custom attributes in a SPField's schema XML.
If you look at the .xsd for the 'Field' element in SharePoint, there are a slew of attributes. The ...
0
votes
1answer
94 views
What control from InfoPath 2007 maps as SPFieldLookUp or SPFieldLookUpCollection field?
Does anyone know what control from InfoPath 2007 maps as SPFieldLookUp or SPFieldLookUpCollection field in SharePoint?
Any idea is accepted.
Thnx.
0
votes
2answers
1k views
Problem adding field to a custom list type in SharePoint
I have defined a custom list template type for SharePoint. I install it using VSeWSS 1.3 and everything seems to behave correctly.
I have added a custom action which will add additional columns ...