为 Sharepoint 表单中的每个字段创建工具提示
我想为员工必须填写共享点网页的表单中的每个部分创建工具提示。当用户将鼠标光标移动到每个字段(标题、描述、部门等)时,相关提示将自动显示为简单的弹出窗口(工具提示),并总结他们应该在那里写的内容。当鼠标光标不在这些字段之一上时,就没有工具提示。
如何通过共享点设计器设计这样的系统?我无法使用任何附加组件。我无法将任何其他内容上传到服务器。我必须进行基于页面的设计。
如果你能好心帮助我,我会很高兴。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否考虑过使用字段描述?
这是 SharePoint 向字段添加附加信息的默认方式。
Have you considered using field description?
This is SharePoint's default way of adding additional information to fields.
我在 SharePoint Designer 2007 工具箱中找不到 ToolTip 控件,因此我在 W3Schools.com 上查找标准 HTML 选项,发现您可以使用 标签。
请参阅 http://www.w3schools.com/tags/tag_abbr.asp 以获取参考,但以下是在显示表单中的 SharePoint 字段标题上实现的工具提示示例:
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:
在 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.
默认情况下,网站栏的显示名称将成为该字段的工具提示。
By default the display name of the site column becomes the tool tip for that field.