有没有办法检索MS CRM中字段的显示名称?到目前为止,我只能得到模式名称;但我希望能够显示更加用户友好的东西。下面的示例将返回hc_billtimeunit3
,但希望返回bill time unit
。
Xrm.Page.getAttribute("hc_billtimeunit3").getName()
答案 0 :(得分:3)
您可以使用以下代码段获取标签文字。
Xrm.Page.getControl("attibutename").getLabel();
或
Xrm.Page.ui.controls.get("attibutename").getLabel();
两者对我来说都是无用的,因为Xrm.Page.getControl
方法是访问Xrm.Page.ui.controls.get
的快捷方式
要从CRM实体自定义中获取显示名称,您可能需要另一个服务调用。
答案 1 :(得分:1)
Xrm.Page.ui.controls.get("attibutename").getLabel();
这实际上对我有用。