sharepoint 2010.用于编辑和预览的 SPField 设置控件

发布于 2024-12-02 17:07:16 字数 145 浏览 2 评论 0原文

我需要为我创建的共享点字段添加自定义编辑器。 如何设置编辑模式和预览模式的控制。将是两个不同的控件!

我发现我可以覆盖FieldRenderingControl。 但如何判断当前模式是编辑还是预览呢?

谢谢。

I need to add custom editor for my created sharepoint field.
How can i set control both for edit mode and preview mode. Will be two different controls!

I found that i can override FieldRenderingControl.
But how to determine that current mode is edit or preview?

thanks.

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

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

发布评论

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

评论(1

姐不稀罕 2024-12-09 17:07:16

在自定义字段呈现控件中 (BaseFieldControl)检查成员“ControlMode”,其类型为 SPControlMode

protected override void CreateChildControls()
{
  base.CreateChildControls();

  if (ControlMode == SPControlMode.Display)
  {
    // create controls for display view form
  }
  else
  {
    // create controls for edit/new form
  } 

另请查看方法“GetFieldValueAsText() ”和“GetFieldValueAsHtml()”继承自 SPField。由于它们用于在非表单位置显示字段内容。例如在列表视图或版本历史记录中。

In your custom field render control (BaseFieldControl) check on the member "ControlMode", which is of type SPControlMode.

protected override void CreateChildControls()
{
  base.CreateChildControls();

  if (ControlMode == SPControlMode.Display)
  {
    // create controls for display view form
  }
  else
  {
    // create controls for edit/new form
  } 

Also have a look on the methods "GetFieldValueAsText()" and "GetFieldValueAsHtml()" inherited from SPField. Since the are used to display the fields content in non-form location. For instance in list view or in the version history.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文