ContentType似乎是“计算”字段,而不是通过API的“选择”字段 - SharePoint 2010

时间:2010-10-18 18:43:04

标签: sharepoint-2010

我们正在尝试使用ListFieldIterator控件来显示包含内容类型的列表项的编辑表单。在UI中以编辑模式查看列表项时,内容类型显示为带有内容类型列表的下拉列表,但是当通过listfielditerator时,“内容类型”字段显示为计算字段但不显示为“选择“领域。

通过SharePoint管理器查看此字段时,该字段显示为选项但不显示为下拉菜单,但在SP2007中,内容类型字段显示为“选择”字段。有什么方法可以解决这个问题吗?内容类型如何在内部显示为下拉列表,它是SP2010中的选项字段?

提前感谢您的时间。

1 个答案:

答案 0 :(得分:0)

常规修改表单不会通过ListFieldIterator控件呈现内容类型,而是通过ChangeContentType控件呈现内容类型。我很惊讶ListFieldIterator正在显示“内容类型”字段。它应该由IsFieldExcluded过滤掉。

<SharePoint:RenderingTemplate id="ListForm" runat="server">
    <Template>
        <span id='part1'>
            <SharePoint:InformationBar runat="server"/>
            <div id="listFormToolBarTop">
            <wssuc:ToolBar CssClass="ms-formtoolbar" id="toolBarTbltop" RightButtonSeparator="&amp;#160;" runat="server">
                    <Template_RightButtons>
                        <SharePoint:NextPageButton runat="server"/>
                        <SharePoint:SaveButton runat="server"/>
                        <SharePoint:GoBackButton runat="server"/>
                    </Template_RightButtons>
            </wssuc:ToolBar>
            </div>
            <SharePoint:FormToolBar runat="server"/>
            <SharePoint:ItemValidationFailedMessage runat="server"/>
            <table class="ms-formtable" style="margin-top: 8px;" border="0" cellpadding="0" cellspacing="0" width="100%">
            <SharePoint:ChangeContentType runat="server"/> <!-- ChangeContentType -->
            <SharePoint:FolderFormFields runat="server"/>
            <SharePoint:ListFieldIterator runat="server"/> <!-- ListFieldIterator -->
            <SharePoint:ApprovalStatus runat="server"/>
            <SharePoint:FormComponent TemplateName="AttachmentRows" runat="server"/>
            </table>
            <table cellpadding="0" cellspacing="0" width="100%"><tr><td class="ms-formline"><img src="/_layouts/images/blank.gif" width='1' height='1' alt="" /></td></tr></table>
            <table cellpadding="0" cellspacing="0" width="100%" style="padding-top: 7px"><tr><td width="100%">
            <SharePoint:ItemHiddenVersion runat="server"/>
            <SharePoint:ParentInformationField runat="server"/>
            <SharePoint:InitContentType runat="server"/>
            <wssuc:ToolBar CssClass="ms-formtoolbar" id="toolBarTbl" RightButtonSeparator="&amp;#160;" runat="server">
                    <Template_Buttons>
                        <SharePoint:CreatedModifiedInfo runat="server"/>
                    </Template_Buttons>
                    <Template_RightButtons>
                        <SharePoint:SaveButton runat="server"/>
                        <SharePoint:GoBackButton runat="server"/>
                    </Template_RightButtons>
            </wssuc:ToolBar>
            </td></tr></table>
        </span>
        <SharePoint:AttachmentUpload runat="server"/>
    </Template>
</SharePoint:RenderingTemplate>