javascript - MSCRM Identify Quick View attributes on form attribute collection -
on form in microsoft dynamics crm can place quick view form show information related parent entity. use javascript dynamically retrieve attributes on form:
xrm.page.data.entity.attributes.foreach(function (attribute, index) { ... }
as of crm 2016, method gives me attributes available, including attributes parent entity. there way identify of returned attributes belong parent entity , available because of qv form placed on form?
either filtering fields in advance or using .getparent().getid() each attribute, comparing main form entity id quick view entity id.
Comments
Post a Comment