共享点。如何访问 RenderingTemplate 中的对象

发布于 2024-12-29 17:45:13 字数 640 浏览 0 评论 0原文

我正在研究渲染模板(Sharepoint 2010),用我自己的重写标准新/编辑/显示表单,但我无法从 RenderingTemplate 类内部的代码开始中获取对象。 例如:

<SharePoint:RenderingTemplate ID="ParentItemsListView" runat="server">
<Template>
    <table cellpadding=0 cellspacing=0>
        <tr><td nowrap class="class1"><asp:Label ID="label1" runat="server" /></td></tr>
        <tr><td><SharePoint:FieldLabel runat="server" ID="TitleDescriptionField"  ControlMode="Edit" FieldName="Title" /></td></tr>
    </table>
</Template>

我需要自定义 FieldLabel 对象。

我希望有人能帮助我。谢谢。

I'm working on rendering templates (Sharepoint 2010), overrided standart new/edit/display forms with my own, but I can't get objects in code-beghind from inside RenderingTemplate class.
for e.g:

<SharePoint:RenderingTemplate ID="ParentItemsListView" runat="server">
<Template>
    <table cellpadding=0 cellspacing=0>
        <tr><td nowrap class="class1"><asp:Label ID="label1" runat="server" /></td></tr>
        <tr><td><SharePoint:FieldLabel runat="server" ID="TitleDescriptionField"  ControlMode="Edit" FieldName="Title" /></td></tr>
    </table>
</Template>

I need to custom FieldLabel object.

I hope someone could help me. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾`听者〃 2025-01-05 17:45:13

你应该能够像这样得到它:

FieldLabel fieldLabelControl= ParentItemsListView.FindControl("TitleDescriptionField") as FieldLabel;
if(fieldLabelControl != null)
{
  //Do something with it
}

You should be able to get it like this:

FieldLabel fieldLabelControl= ParentItemsListView.FindControl("TitleDescriptionField") as FieldLabel;
if(fieldLabelControl != null)
{
  //Do something with it
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文