Sharepoint 2010添加一个选择字段

时间:2012-11-26 08:39:07

标签: sharepoint-2010 choice choicefield

我必须在共享点列表中添加一个选择字段(下拉列表)。我在Visual Studio中使用SharePoint API。

这是我的代码。我试图运行它并且没有错误但它不起作用。

private void addChoiceField(SPFeatureReceiverProperties properties, String _listName, String _fieldName)
        {
            using (SPWeb _web = properties.Feature.Parent as SPWeb)
            {
                    SPList _list = _web.Lists.TryGetList(_listName);
                    writeLog(properties, "list name:" + _listName);
                    SPFieldChoice _fieldDD = (SPFieldChoice)_list.Fields[_fieldName];
                    writeLog(properties, "fieldname:" + _fieldName);
                    if (_fieldName == "State")
                    {
                        _fieldDD.Choices.Clear();
                        _fieldDD.Choices.Add("Gesloten-Verloren");
                        _fieldDD.Choices.Add("Analyse nodig");
                        _fieldDD.Choices.Add("Onderhandeling of revise");
                        _fieldDD.Choices.Add("Presentatie of demo");
                        _fieldDD.Choices.Add("Voorstel voor prijsofferte");
                        _fieldDD.Choices.Add("Prospect");
                        _fieldDD.Choices.Add("Waardevol");
                        _fieldDD.Choices.Add("Gesloten-Gewonnen");
                        _fieldDD.Update();
                    }
}
}

有没有人知道什么是错的,或者如何使用API​​以不同的方式添加选择字段?

1 个答案:

答案 0 :(得分:0)

您需要致电

  

_list.Fields.CreateNewField

实际将其添加到列表中,而不是尝试从列表中提取现有字段。

以下是方法说明的链接:http://msdn.microsoft.com/en-us/library/microsoft.harepoint.spfieldcollection.createnewfield.aspx