如何在sharepoint查阅列中添加(分配)项?

时间:2011-10-31 07:11:53

标签: sharepoint-2010 padding lookup

我在sharepoint中动态添加“任务列表”项。我的任务列表包含称为“相关文档”的自定义查找字段。所以当我在任务列表中添加新项目的同时我需要添加(分配lookupfield的右侧“)”relateddocument“字段。如何做到这一点。

简单地说:我的值直接添加到查询列的RHS中。

2 个答案:

答案 0 :(得分:0)

我不确定我的问题是对的。

是否要将查找字段值添加到查找字段?

编辑:

相关文档的SPListItem ID是您需要分配给查找值的内容。使用查询或其他方式获取SPListItem,然后将其分配给新任务列表项上的lookupfield。请记住在网络上允许不安全的更新并更新项目。

web.AllowUnsafeUpdates=true;
taskItem["Lookup field name or ID"] = relatedDoc.ID
taskItem.Update();

答案 1 :(得分:0)

> private static void CreateDocumentItem(SPList DocumentLibrary, 
> string ItemName, string FilePath, string FileRef,string DocId,string
> ParentFolder)
>         {
>             var ParentURL = string.Empty;
>             if (!DocumentLibrary.ParentWebUrl.Equals("/"))
>             {
>                 ParentURL = DocumentLibrary.ParentWebUrl;
>             }
>             SPSecurity.RunWithElevatedPrivileges(delegate
>             {
>                 using (var site = new SPSite(DocumentLibrary.ParentWeb.Url))
>                 {
>                     using (SPWeb web = site.OpenWeb())
>                     {
>                         Hashtable propertiesHash = new Hashtable
>                                              {
>                                                  {"EYDocID",DocId}                                                 
>                                              };
>                         byte[] strm = File.ReadAllBytes(FilePath);
>                         DocumentLibrary.RootFolder.Files.Add(ParentURL + FileRef + "/" + ParentFolder + "/" + ItemName, strm, propertiesHash, false);
>                         web.AllowUnsafeUpdates = false;
>                     }
>                 }
>             });
> 
>         }`