Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 CRM 2011 有疑问。我们有一些实体的子网格,我需要从这个子网格中获取选定的项目并发送到另一个表单。(例如 onSave 事件)怎么可能呢?
谢谢
这应该适合你:
var records = Xrm.Page.getControl({grid name})._control.get_innerControl().get_selectedRecords();
其中 {grid name} 将是属性窗口中网格的名称。