MS-CRM 4 中工具提示的自定义
我是 MS-Crm 新手。关于其定制有很多问题。
- 如何编辑其形式。
- 如何编辑工具提示。
I am new to MS-Crm. having lots of question regarding its customization.
- how to edit its form.
- how to edit tool tip.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要在 CRM 中编辑表单:
设置 ->定制->自定义实体->双击实体将其打开->表单和视图 ->双击表单将其打开。
您可以更改表单属性(即字段)的工具提示,但它需要表单的 onLoad 事件中的 JavaScript。如果你谷歌一下,就会有很多例子,例如:
http: //crm.atechnisch.nl/2009/07/use-tooltips-as-hot-help/
To edit a form in CRM:
Settings -> Customization -> Customize Entities -> Double-click entity to open it -> Forms and Views -> Double-click Form to open it.
You can change a tooltip of a form attribute (ie. a field) but it requires JavaScript in the onLoad event of the form. There are plenty of examples if you Google, e.g.:
http://crm.atechnisch.nl/2009/07/use-tooltips-as-hot-help/
我不确定您所说的如何编辑其表单是什么意思。要编辑 onload/onsave/onchange 脚本,您需要转到“设置”>“自定义”>“自定义实体”>要自定义的实体。
不支持添加工具提示的方法。您很可能需要为字段等创建自己的工具提示代码,并将其加载到 global.js 文件中。
I'm not sure what you mean by how to edit its form. To edit the onload/onsave/onchange scripts you need to go to Settings>Customization>Customize Entities>The entity to customize.
There is no supported way to add tooltips. You'll most likely need to create your own tooltip code for fields and such and have it be loaded within the global.js file.
工具提示解决方案在这里 http://www.crmInnovation.com/inline_help.asp
顺便说一句,您除非通过系统内置的自定义向导,否则无法编辑 CRM 表单。
Tool Tip solution here http://www.crmInnovation.com/inline_help.asp
BTW, you cannot edit CRM forms except through the customization wizard built into the system.