0
var item = SPContext.Current.List.Items.Add();
item["ContentTypeId"] = SelectedCurrentType.Id;
item["SomeField"] = ...
//make some fields changes
item.Update();

但是当我创建这个项目时,我得到一个包含所有字段的文件夹。在列表视图中没有

<a onfocus="OnLink(this)" href="/.../Lists/.../AllItems.aspx?RootFolder=%2F..%2FLists%2F..%2F..&amp;FolderCTID=0x0100CBE0798399&amp;View={D1DDC726-FC9C-40D3-A07B-5EAFE2286C66}" onclick="                javascript:EnterFolder(&quot;/.../Lists/.../AllItems.aspx?RootFolder=&quot; + escapeProperly(&quot;/.../Lists/.../...&quot;) + '&amp;FolderCTID=0x0100CBE079839FA443AB3C64E9BA763E776AC0FD9&amp;View={D1DDC726-FC9C-40D3-A07B-5EAFE2286C66}');return false;">Test</a>

在“操作”部分的功能区上,我有一个“打开”按钮,
出了什么问题?我怎样才能解决这个问题?

4

1 回答 1

0

答案是

<SharePoint:CreatedModifiedInfo ControlMode="Display" runat="server"/>

其实不知道为什么,但是这个控件让自定义表单变得很奇怪。所以解决方案是从自定义新表单中删除此控件

于 2012-12-18T07:33:53.510 回答