为 Sharepoint 表单中的每个字段创建工具提示

发布于 2024-08-31 15:02:35 字数 222 浏览 8 评论 0原文

我想为员工必须填写共享点网页的表单中的每个部分创建工具提示。当用户将鼠标光标移动到每个字段(标题、描述、部门等)时,相关提示将自动显示为简单的弹出窗口(工具提示),并总结他们应该在那里写的内容。当鼠标光标不在这些字段之一上时,就没有工具提示。

如何通过共享点设计器设计这样的系统?我无法使用任何附加组件。我无法将任何其他内容上传到服务器。我必须进行基于页面的设计。

如果你能好心帮助我,我会很高兴。

I want to create tool tips for each part in a form which employees have to fill in a share point web page. When users move the mouse cursor on each field (Title, description, department etc.) the related tip will be automatically became visible as a simple pop-up (tool tip) and summarize what they should write there. and when the mouse cursor is not on one of these fields there is no tool tip.

How can I design such a system via share point designer? I am not able use any add ons. I can't upload any additional things to the server. I have to make page based design.

I would be glad if you kindly help me.

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

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

发布评论

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

评论(4

滥情空心 2024-09-07 15:02:35

您是否考虑过使用字段描述?
这是 SharePoint 向字段添加附加信息的默认方式。

字段描述

Have you considered using field description?
This is SharePoint's default way of adding additional information to fields.

field description

魂归处 2024-09-07 15:02:35

我在 SharePoint Designer 2007 工具箱中找不到 ToolTip 控件,因此我在 W3Schools.com 上查找标准 HTML 选项,发现您可以使用 标签。

请参阅 http://www.w3schools.com/tags/tag_abbr.asp 以获取参考,但以下是在显示表单中的 SharePoint 字段标题上实现的工具提示示例:

    <td valign="top" class="ms-formlabel" style="width: 50px">
       <H3 class="ms-standardheader">
          <nobr><abbr title="The actual number of man-days effort expended.">Man-days (Actual)</abbr></nobr>
       </H3>
    </td>

I couldn't find the ToolTip control in my SharePoint Designer 2007 Toolbox, so I looked on W3Schools.com for a standard HTML option and found that you can use the <ABBR> tag.

See http://www.w3schools.com/tags/tag_abbr.asp for the reference, but here's an example of a tooltip implemented on a SharePoint field title in a display form:

    <td valign="top" class="ms-formlabel" style="width: 50px">
       <H3 class="ms-standardheader">
          <nobr><abbr title="The actual number of man-days effort expended.">Man-days (Actual)</abbr></nobr>
       </H3>
    </td>
荒人说梦 2024-09-07 15:02:35

在 SharePoint 设计器中打开表单的 aspx 页面。然后你可以像Visual Studio一样使用SharePoint设计器来查看代码。尝试将“工具提示”属性添加到表单内的字段控件。这些控件实际上使用 XSLT 而不是 ASP 编写的可能性很小,因此请准备好进行一些研究。

Open up the aspx page for the form in SharePoint designer. Then you can use SharePoint designer just like Visual Studio to see the code. Try adding the "tooltip" attribute to the field controls within the form. There is a small possibility these controls will actually be written using XSLT instead of ASP, so be prepared to do some studying.

っ〆星空下的拥抱 2024-09-07 15:02:35

默认情况下,网站栏的显示名称将成为该字段的工具提示。

By default the display name of the site column becomes the tool tip for that field.

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