Tagged Questions
0
votes
1answer
39 views
Developing console applications for previous assemblies (Sharepoint 2010)
I Made a console application that changes items in a list that has a Taxonomy field.
The app works well on the Developement machine, but for some reason, when move it to production, we get this error:
...
0
votes
0answers
28 views
Is it possible to set an anchor id for user profile taxonomy properties?
As the title says I'm wondering whether it is possible to set an anchor term for a user profile taxonomy property.
0
votes
0answers
141 views
2010 Term Store Management - Term Set Default Label and Other Labels properties missing
My goal is for search to return results based on synonyms e.g., display results containing SharePoint if a user searches for SP.
I've managed to enable the Term Store Management feature in ...
2
votes
4answers
196 views
Invoking the SharePoint taxonomy API. To cache or not to cache?
I am using SharePoint 2010 to build a public facing, anonymous website.
There is a web part on my home page, that displays taxonomy values from the term store. (A couple of hundred terms.)
Since ...
2
votes
1answer
475 views
Get TaxonomySession TermStore TermSet Term from Sharepoint 2010 Server using Microsoft.Sharepoint.Client.Taxonomy.dll
I'm coding a c++/c# client-application to communicate with a Sharepoint 2010 site which uses Taxonomy
I have downloaded and installed Microsoft.Sharepoint.Client.Taxonomy.dll from:
...
2
votes
1answer
266 views
FullTextSQLQuery with a Taxonomy GUID in Where Clause
I've created a few documents and tagged them with various Taxonomy Terms from a Term Set. The terms I have chosen are children of other Terms. I've executed a crawled and created a Managed Property ...
0
votes
2answers
220 views
English Labels stored in Managed Meta Data Fields in French Variation Site
When we provision a TaxonomyFieldType using elements.xml we set the ShowField attribute to "Term1033" where the 1033 represents the LCID of the field to be displayed.
I am asking this as when ...
1
vote
1answer
335 views
Exception “The SPListItem being updated was not retrieved with all taxonomy fields.” at changing TaxonomyField value
This problem appears only on one particular Document Library. I use
TaxonomyField.SetFieldValue(myItem, myTaxonomyFieldValue);
and it works fine everywhere except this lib. Can anyone suggest a ...
0
votes
2answers
703 views
TaxonomyWebTaggingControl Not Showing Up on Page
I am attempting to use a Taxonomy Picker Control (TaxonomyWebTaggingControl) on an Application Page based on the term set configured for a User Profile property. In this scenario, I have set the Ask ...
1
vote
2answers
1k views
Modify existing lookup type column to managed metadata type
We are in process of migrating one of our big website which is built in WSS 3.0 to SharePoint 2010 Standard version.
In the process we want to convert all lookup columns to managed metadata type. We ...
0
votes
1answer
53 views
how to access Taxonomy change log
I can see audit log at web application level, but how can I see audit log for modifications in managed metadata application content and schema changes?
Thanks in advance
3
votes
3answers
802 views
How to remove obsolete/orphaned items from TaxonomyHiddenList
Explanation of environment: I am running SharePoint 2010 SP1, December CU's. I have a list item which has a taxonomy column. As expected, if a term (e.g. “foo”) is deleted from the term store, users ...
0
votes
2answers
1k views
How to dynamically add a TaxonomyFieldControl to a page?
I had gone the route of creating a placeholder on the aspx page and then doing:
myPlaceHolder.Controls.Add(myTaxonomyControl);
but for some reason this doesn't do anything. No error and no ...
1
vote
2answers
914 views
How to get all possible values of a TaxonomyField?
I found the GetFieldValue(string value) function but this requires that you pass it a value that serves as the identifier for the value to be retrieved (i think).
I just want to get all of the ...
1
vote
1answer
91 views
Handling files and folders
In Sharepoint 2010, is there a way to limit the names that folders and files can be given, and is there a way to set criteria for any document libraries that are created by users? Here is what I'd ...
1
vote
1answer
2k views
Set multiple values to Enterprise Keywords TaxonomyField
I want to programmatically set the values of the Enterprise Keywords Managed Metadata field. This field supports multiple values, but I can only get it to take one at a time.
I have the following ...
0
votes
1answer
130 views
Crawling the taxonomy store using a timer job in central admin
I am trying to get a timer job to crawl the Taxonomy Termstores, and am having a problem determining which SPSite object to use when instantiating the TaxonomySession. Is there a SPSite instance that ...
1
vote
1answer
327 views
ListFieldIterator doesn't return value of Enterprise keywords
In my project I use ListFieldIterator control to allow users view and change meta data values. I can read values of ListFieldIterator fields with code like this:
object value = ...