En SharePoint 2013, Catálogo de productos: ¿Cómo agregar programáticamente una etiqueta a la columna Categoría de artículo en la lista de productos?

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/49328

  •  09-12-2019
  •  | 
  •  

Pregunta

Tengo un webpart personalizado para agregar un elemento a la lista de productos, necesito una forma de agregar etiquetas a la columna Category del artículo en la lista (programáticamente).

¿Cómo lo hago!

¿Fue útil?

Solución 2

i figured out a way to do this TaxonomyFieldValueCollection TagsCat = new TaxonomyFieldValueCollection(String.Empty); TagsCat.PopulateFromLabelGuidPairs(TaxonomyWebTaggingControl1.Text);

                            var taxKeywordField = oSpListItem.Fields.GetField("ProductCatalogItemCategory") as TaxonomyField;
                            taxKeywordField.CreateValuesInEditForm = true;
                            try
                            {
                                taxKeywordField.ParseAndSetValue(oSpListItem, TagsCat[0].TermGuid);
                            }
                            catch (Exception e2)
                            {

                            }
                            oSpListItem.Update();

This worked for me

Otros consejos

Take a look at these scripts on TechNet. The script starting with 5 is updating the Item Category column. http://gallery.technet.microsoft.com/Import-list-content-to-f735d7fb

Licenciado bajo: CC-BY-SA con atribución
scroll top