The field-type tag has no wiki summary.
0
votes
1answer
62 views
Set Person field type in a SharePoint Designer Workflow best practices
In SP Designer, when using the "Set Field in Current Item" action, if the field you are setting is a Person type, there are several choices to "return" the data as. For example, if setting your Person ...
0
votes
0answers
22 views
Why Does a People Field Return a String by Default?
I recently "cleaned up" a chunk of code that was using SPFieldLookupValues like:
SPFieldLookupValue lookup = new SPFieldLookUpValue(listItem["Field"].ToString());
int itemID = lookup.LookupId;
string ...
1
vote
1answer
100 views
Date column showing as “Date and Time” even though “Date Only” selected
In a workflow I have set up on a list, the email that is generated is showing a date with both date and time, with the time at 12:00:00 AM (using a lookup of one of the list's columns). Checking the ...
4
votes
1answer
441 views
Register js for custom field type in SharePoint 2013
I have a custom field type for SharePoint 2010/2007, but after migrated to SharePoint 2013, I met a problem.
Here is what I defined for "RenderPattern" in fldtypes_myfield.xml
<RenderPattern ...
0
votes
1answer
349 views
Caml Join Field Type
I'm having trouble using the Join via Caml.
In a way, I'm having trouble working with 1 field, that is "new window" that the field type is boolean.
My code looks like this:
SPQuery oQuery = new ...
0
votes
1answer
110 views
Want my column display minutes and want it to sum in hours
I have an issue again...
I create list from csvfile. I convert string with date into DateTime type like this:
string[] formattedDates = { "dd.MM.yyyy HH:mm:ss", "mm:ss", "HH:mm:ss", "dd.MM.yyyy", ...
1
vote
3answers
229 views
How can I add Custom Field settings to all OOB Field types?
I need to add a custom "Check Box" property to all existing OOB SharePoint column types. This should appear in the Additional Column Settings section for any column type created; this property will be ...