CRM2011 如何在Javascript中通过实体名称获取对象类型代码?
我在表单中有一个查找字段,在选择查找的相关实体之前,我检查一些条件,如果不通过,我覆盖查找 onclick 事件以提醒用户;否则,我需要覆盖 onclick 事件以显示查找窗口以允许用户选择实体。
所以我需要此查找的对象类型代码,但是在 select 之前没有值,那么我无法使用以下代码获取对象类型代码: var objecttypecode = Xrm.Page.getAttribute("field id") .getValue()[0].type;
如何通过实体名称获取对象类型代码?
I have a lookup field in the form, before select the related entity for the lookup, I check some conditions, if not pass, I overwrite the lookup onclick event to alert user; else, I need to overwrite the onclick event to show the lookup window to allow user to select entity.
So I need the object type code of this lookup, but before select there is no value then I can't get the object type code by use this code: var objecttypecode = Xrm.Page.getAttribute("field id").getValue()[0].type;
How to get object type code by entity name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了方法:
I find out the way:
支持的方法之一是使用元数据服务,然后检索对象类型代码等(实体类型代码)。
One of the supported way of doing this is using the Metadata service and then retrieving the Object Type Code or etc (entity Type Code).